X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Faxwin2_src%2FMakefile;h=89f1584213e7c024c8677b5f33d6ce1212827298;hb=956e8a29de884d0e12351552b6f4b5ad2e3c1b4c;hp=e47c829d50878619a0e67375ccd13eebb57cc5aa;hpb=c3a2920bab79e0a41b45c74b883367437ab1dd6d;p=tpg%2Facess2.git diff --git a/Usermode/Applications/axwin2_src/Makefile b/Usermode/Applications/axwin2_src/Makefile index e47c829d..89f15842 100644 --- a/Usermode/Applications/axwin2_src/Makefile +++ b/Usermode/Applications/axwin2_src/Makefile @@ -1,4 +1,13 @@ -%: - $(MAKE) -C WM/ $@ - $(MAKE) -C Shell_src/ $@ +NAME = AxWin2 +DIRS = WM Shell_src + +SUBMAKE = $(MAKE) --no-print-directory + +all: + @$(foreach DIR,$(DIRS), echo --- $(NAME)/$(DIR) && $(SUBMAKE) -C $(DIR) $@ &&) true +install: + @$(foreach DIR,$(DIRS), echo --- $(NAME)/$(DIR) && $(SUBMAKE) -C $(DIR) $@ &&) true + +clean: + @$(foreach DIR,$(DIRS), $(SUBMAKE) -C $(DIR) $@ &&) true