about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-08-22 19:46:13 -0400
committerJune McEnroe <june@causal.agency>2019-08-22 19:46:13 -0400
commit6c49f0bd549c3b6db2b047e5e7e19f0d26cff9f4 (patch)
tree5ea502d5297e9198642c96512f8d20b36b445b5b /Makefile
parentAdd FILES section (diff)
downloadcards-6c49f0bd549c3b6db2b047e5e7e19f0d26cff9f4.tar.gz
cards-6c49f0bd549c3b6db2b047e5e7e19f0d26cff9f4.zip
Add example
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8990dd0..488245d 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CFLAGS += -std=c99 -Wall -Wextra -Wpedantic
 
 include config.mk
 
-BINS = dump
+BINS = dump example
 
 all: ${BINS}
 
@@ -11,7 +11,7 @@ ${BINS}: cards.o
 .o:
 	${CC} ${LDFLAGS} $< cards.o ${LDLIBS} -o $@
 
-cards.o dump.o: cards.h
+cards.o dump.o example.o: cards.h
 
 clean:
 	rm -f ${BINS} *.o *.bmp