]> git.cworth.org Git - wordgame/blobdiff - Makefile
Print the per-word statistics at the end of the game.
[wordgame] / Makefile
index dd05adedfd0b820886ecdbadf3be1551b1e2a48a..d7441aa64aabbc65f8626d065ed20f314199e1d9 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
 WGCFLAGS=-Wall -Wextra -Wmissing-prototypes -Wno-unused-parameter
 
-PROGRAMS=grid drill2
+PROGRAMS=grid4 drill2 rack
 all: $(PROGRAMS)
 
-LIBRARY=dict.o word-game.o
+LIBRARY=dict.o grid.o word-game.o
 
 %: %.o $(LIBRARY)
        $(CC) $(CFLAGS) $(WGCFLAGS) $(LDFLAGS) -lreadline -lm -o $@ $^