about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
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