diff options
author | June McEnroe <june@causal.agency> | 2019-03-16 01:51:51 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-03-16 01:51:51 -0400 |
commit | 07f796e2fd81f982a54e82c95057cae22cc25e26 (patch) | |
tree | 8f22329740cfe3752ec799e7c20e53b9f3699b01 /Makefile | |
parent | Add flags to fix up cards graphics (diff) | |
download | wep-07f796e2fd81f982a54e82c95057cae22cc25e26.tar.gz wep-07f796e2fd81f982a54e82c95057cae22cc25e26.zip |
Add demo
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 68e6a17..e6c8651 100644 --- a/Makefile +++ b/Makefile @@ -7,11 +7,14 @@ LDLIBS = -lSDL2 -include config.mk -BINS = dump -OBJS = cards.o dump.o +BINS = demo dump +OBJS = cards.o demo.o dump.o all: $(BINS) +demo: cards.o demo.o + $(CC) $(LDFLAGS) cards.o demo.o $(LDLIBS) -o demo + dump: cards.o dump.o $(CC) $(LDFLAGS) cards.o dump.o $(LDLIBS) -o dump |