wordsearch/src/Makefile

12 lines
175 B
Makefile
Raw Normal View History

2017-01-18 16:40:43 +00:00
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)