cleaning things up a bit

This commit is contained in:
Dan Buch
2011-06-16 21:46:56 -04:00
parent e026dabefb
commit 731e1002cd
10 changed files with 39 additions and 7 deletions

14
gowrikumar/src/Makefile Normal file
View File

@@ -0,0 +1,14 @@
# puzzles from http://www.gowrikumar.com/c/
BINDIR := ../bin
ALL_BIN := $(patsubst %.c,$(BINDIR)/%,$(wildcard *.c))
$(BINDIR)/%: %.c
$(CC) -o $@ $<
all: $(ALL_BIN)
.PHONY: all