diff options
author | June McEnroe <june@causal.agency> | 2019-08-22 19:46:13 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-08-22 19:46:13 -0400 |
commit | 6c49f0bd549c3b6db2b047e5e7e19f0d26cff9f4 (patch) | |
tree | 5ea502d5297e9198642c96512f8d20b36b445b5b /Makefile | |
parent | Add FILES section (diff) | |
download | cards-6c49f0bd549c3b6db2b047e5e7e19f0d26cff9f4.tar.gz cards-6c49f0bd549c3b6db2b047e5e7e19f0d26cff9f4.zip |
Add example
Diffstat (limited to '')
-rw-r--r-- | Makefile | 4 |
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 |