nexus-am/Makefile

16 lines
239 B
Makefile
Raw Normal View History

2017-05-21 23:22:51 +08:00
include Makefile.check
2017-04-21 01:03:44 +08:00
2017-05-21 23:22:51 +08:00
AM_HOME ?= $(shell pwd)
2017-04-21 01:03:44 +08:00
2017-05-21 23:22:51 +08:00
all:
@$(MAKE) -C am
2017-04-21 01:17:16 +08:00
2017-07-28 11:30:58 +08:00
# clean everything
ALLMAKE = $(dir $(shell find . -mindepth 2 -name "Makefile"))
$(ALLMAKE):
2017-08-12 15:53:11 +08:00
-@$(MAKE) -s -C $@ clean
2017-07-28 11:30:58 +08:00
clean: $(ALLMAKE)
.PHONY: all clean $(ALLMAKE)