Skip to content

Instantly share code, notes, and snippets.

View wheberth's full-sized avatar

Wheberth Dias wheberth

View GitHub Profile
@linse
linse / Makefile
Created May 21, 2014 17:15
Recursive make and make clean
SUBDIRS = src doc whatever
.PHONY: all clean
all clean:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir -f Makefile $@; \
done