10 lines
230 B
Makefile
10 lines
230 B
Makefile
CFLAGS += -Wall -pedantic --std=c99 $(shell pkg-config --cflags libfreefare) -g -O0 -D_POSIX_C_SOURCE=200809L
|
|
LDFLAGS += $(shell pkg-config --libs libfreefare)
|
|
|
|
all: poll_desfire
|
|
|
|
clean:
|
|
rm -f poll_desfire *.o
|
|
|
|
.PHONY: all clean
|