This commit is contained in:
Matthew Slowe 2017-01-18 16:40:43 +00:00
parent 86463e38bf
commit 755417a3f0
Signed by: foo
GPG Key ID: 673B252EA4A598B9

12
src/Makefile Normal file
View File

@ -0,0 +1,12 @@
CC=gcc
CFLAGS=-DDEBUG_GRID_MAIN
DEPS=dir.o rnd.o grid.o
wordsearch: $(DEPS)
$(CC) -o wordsearch $(DEPS) $(CFLAGS)
%.o: %.c
$(CC) -c -o $@ $< $(CFLAGS)
clean:
rm $(DEPS)