X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FFilesystem%2FMakefile;h=7eb069409cd57c75952a78bc2ebd28edfb9b2867;hb=04a050f42807686dc119838c82372409246d55bb;hp=4cf24a37adcf548b69205bbe10a48f89c4f08b22;hpb=4b59aea79be4992af2b1c38ea43f6dacf939d782;p=tpg%2Facess2.git diff --git a/Usermode/Filesystem/Makefile b/Usermode/Filesystem/Makefile index 4cf24a37..7eb06940 100644 --- a/Usermode/Filesystem/Makefile +++ b/Usermode/Filesystem/Makefile @@ -1,7 +1,7 @@ # Acess 2 # - Usermode Filesystem Structure Generator --include ../../Makefile.cfg +-include ../Makefile.cfg DIRS = Bin SBin Libs Modules Apps DIRS += Conf Conf/Auth @@ -12,14 +12,17 @@ FILES = Conf/BootConf.cfg #FILES := $(addprefix $(DISTROOT)/,$(FILES)) .PHONY: all clean -.PHONY: $(DIRS) $(FILES) +.PHONY: $(DIRS) $(FILES) DISTROOT -install: $(DIRS) $(FILES) +install: DISTROOT $(DIRS) $(FILES) clean: +DISTROOT: + $(xMKDIR) $(DISTROOT); true + $(DIRS): - $(xMKDIR) $(DISTROOT)/$@ + $(xMKDIR) $(DISTROOT)/$@; true $(FILES): $(xCP) $@ $(DISTROOT)/$@