David Blume's GitList
Repositories
testcode.git
Code
Commits
Branches
Tags
Search
Tree:
6c9321d
Branches
Tags
c++11
main
start
testcode.git
Makefile
first commit
David Blume
commited
6c9321d
at 2015-11-07 22:13:58
Makefile
Blame
History
Raw
SUBDIRS=my_lib product LIBDIR=lib .PHONY: clean subdirs $(SUBDIRS) subdirs: $(SUBDIRS) $(SUBDIRS): $(MAKE) -C $@ all: $(LIBDIR) subdirs product: my_lib $(LIBDIR): mkdir $@ clean: for dir in $(SUBDIRS); do \ $(MAKE) -C $$dir clean; \ done