mirror of
https://github.com/fooflington/wordsearch.git
synced 2025-06-09 12:00:51 +00:00
13 lines
188 B
Makefile
13 lines
188 B
Makefile
CC=gcc
|
|
CFLAGS=-DDEBUG_GRID_MAIN -std=c99 -g
|
|
DEPS=dir.o rnd.o grid.o
|
|
|
|
wordsearch: $(DEPS)
|
|
$(CC) -o wordsearch $(DEPS) $(CFLAGS)
|
|
|
|
%.o: %.c
|
|
$(CC) -c -o $@ $< $(CFLAGS)
|
|
|
|
clean:
|
|
rm $(DEPS)
|