Initial commit.

This commit is contained in:
2026-02-19 17:45:10 +00:00
commit c44292b744
4 changed files with 527 additions and 0 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
CC=gcc
CFLAGS=-Wall -Wextra -O2
LDFLAGS=
LDLIBS=-lusb-1.0
TARGETS=desk_reminder scan
all: $(TARGETS)
desk_reminder: desk_reminder.c
$(CC) $(CFLAGS) desk_reminder.c -o desk_reminder $(LDLIBS)
scan: scan.c
$(CC) $(CFLAGS) scan.c -o scan -lpcsclite
clean:
rm -f $(TARGETS)
.PHONY: all clean