]> git.cworth.org Git - wordgame/blobdiff - Makefile
Report the time limit expiration, but don't end the game.
[wordgame] / Makefile
index dd05adedfd0b820886ecdbadf3be1551b1e2a48a..79c066c94253ba00f51bd9da43c4564453683e3e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
-WGCFLAGS=-Wall -Wextra -Wmissing-prototypes -Wno-unused-parameter
+WGCFLAGS=-Wall -Wextra -Wmissing-prototypes -Wno-unused-parameter -Wno-sign-compare
 
-PROGRAMS=grid drill2
+PROGRAMS=grid4 grid5 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 $@ $^