about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 488245d..0000000
--- a/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-CFLAGS += -std=c99 -Wall -Wextra -Wpedantic
-
-include config.mk
-
-BINS = dump example
-
-all: ${BINS}
-
-${BINS}: cards.o
-
-.o:
-	${CC} ${LDFLAGS} $< cards.o ${LDLIBS} -o $@
-
-cards.o dump.o example.o: cards.h
-
-clean:
-	rm -f ${BINS} *.o *.bmp