David Blume's GitList
Repositories
testcode.git
Code
Commits
Branches
Tags
Search
Tree:
9d5b420
Branches
Tags
c++11
main
start
testcode.git
Makefile
Added a routine to cause a deadlock. See http://wiki.dlma.com/gdb for more.
David Blume
commited
9d5b420
at 2016-10-16 20:24:34
Makefile
Blame
History
Raw
SUBDIRS=my_lib product LIBDIR=lib .PHONY: clean debug subdirs $(SUBDIRS) subdirs: $(SUBDIRS) $(SUBDIRS): $(MAKE) -C $@ all: $(LIBDIR) subdirs for dir in $(SUBDIRS); do \ $(MAKE) -C $$dir \ done debug: for dir in $(SUBDIRS); do \ $(MAKE) -C $$dir $(MAKECMDGOALS); \ done product: my_lib $(LIBDIR): mkdir $@ clean: for dir in $(SUBDIRS); do \ $(MAKE) -C $$dir $(MAKECMDGOALS); \ done