Initial commit.
This commit is contained in:
19
Makefile
Normal file
19
Makefile
Normal 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
|
||||
Reference in New Issue
Block a user