nexus-am/Makefile

16 lines
250 B
Makefile

include Makefile.check
AM_HOME ?= $(shell pwd)
default:
@$(MAKE) -s -C am
# clean everything
ALLMAKE = $(dir $(shell find . -mindepth 2 -name "Makefile"))
$(ALLMAKE):
-@$(MAKE) -s -C $@ clean
clean: $(ALLMAKE)
.PHONY: default clean $(ALLMAKE)