20 lines
297 B
Makefile
20 lines
297 B
Makefile
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
|