]> git.cworth.org Git - wordgame/blobdiff - Makefile
Move the main game logic from grid.c to new word-game.c
[wordgame] / Makefile
index 270b2ef3df53bbc84c3e42569f1469e8f0175964..2e1e7e06a965eacf3da38380f37f4187fc90b3a4 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ WGCFLAGS=-Wall -Wextra -Wmissing-prototypes -Wno-unused-parameter
 PROGRAMS=grid
 all: $(PROGRAMS)
 
-LIBRARY=dict.o
+LIBRARY=dict.o word-game.o
 
 grid: grid.o $(LIBRARY)
        $(CC) $(CFLAGS) $(WGCFLAGS) $(LDFLAGS) -lreadline -lm -o $@ $^