box-o-sand/oldstuff/PracticingC/gowrikumar/src/Makefile

13 lines
176 B
Makefile
Raw Normal View History

2011-06-17 01:46:56 +00:00
# puzzles from http://www.gowrikumar.com/c/
ALL_BIN := $(patsubst %.c,$(BINDIR)/%,$(wildcard *.c))
$(BINDIR)/%: %.c
2011-06-18 18:28:00 +00:00
$(CC) $(CFLAGS) -o $@ $<
2011-06-17 01:46:56 +00:00
all: $(ALL_BIN)
.PHONY: all