You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
687 B
Makefile
32 lines
687 B
Makefile
DIRS= \
|
|
dynamic-security \
|
|
examples \
|
|
persist-sqlite
|
|
|
|
.PHONY : all binary check clean reallyclean test test-compile install uninstall
|
|
|
|
all :
|
|
set -e; for d in ${DIRS}; do $(MAKE) -C $${d}; done
|
|
|
|
binary :
|
|
set -e; for d in ${DIRS}; do $(MAKE) -C $${d} $@; done
|
|
|
|
clean :
|
|
set -e; for d in ${DIRS}; do $(MAKE) -C $${d} $@; done
|
|
|
|
reallyclean :
|
|
set -e; for d in ${DIRS}; do $(MAKE) -C $${d} $@; done
|
|
|
|
test-compile :
|
|
set -e; for d in ${DIRS}; do $(MAKE) -C $${d} $@; done
|
|
|
|
check : test
|
|
test :
|
|
set -e; for d in ${DIRS}; do $(MAKE) -C $${d} $@; done
|
|
|
|
install :
|
|
set -e; for d in ${DIRS}; do $(MAKE) -C $${d} $@; done
|
|
|
|
uninstall :
|
|
set -e; for d in ${DIRS}; do $(MAKE) -C $${d} $@; done
|