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.
tenku/rkt/Makefile

23 lines
461 B
Makefile

## define here all recursively buildable targets
SUBDIRS := nginx
.PHONY := $(SUBDIRS) recurse clean get-tools
.DEFAULT_GOAL := recurse
RECURSE_TARGET ?= $(MAKECMDGOALS)
recurse:
@for D in $(SUBDIRS) ; do \
if [ -e $${D}/Makefile ]; then \
$(MAKE) -C "$${D}" $(RECURSE_TARGET) || exit $$? ; \
fi ; \
done
clean: ; @$(MAKE) RECURSE_TARGET=clean recurse
## disable entering/exiting messages
#.SILENT:
get-tools:
go get github.com/gdm85/deb2aci