X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FFilesystem%2FMakefile;h=a49d887d03836bf71e307568151f82fab74d9063;hb=5ac2fe262ff023ca109c7fd48dc3c819ef5b283e;hp=4cf24a37adcf548b69205bbe10a48f89c4f08b22;hpb=4b59aea79be4992af2b1c38ea43f6dacf939d782;p=tpg%2Facess2.git diff --git a/Usermode/Filesystem/Makefile b/Usermode/Filesystem/Makefile index 4cf24a37..a49d887d 100644 --- a/Usermode/Filesystem/Makefile +++ b/Usermode/Filesystem/Makefile @@ -1,25 +1,28 @@ # Acess 2 # - Usermode Filesystem Structure Generator --include ../../Makefile.cfg +-include ../Makefile.cfg DIRS = Bin SBin Libs Modules Apps DIRS += Conf Conf/Auth -FILES = Conf/BootConf.cfg +FILES = Conf/inittab # Conf/Auth/Users Conf/Auth/Passwords Conf/Auth/Groups #DIRS := $(addprefix $(DISTROOT)/,$(DIRS)) #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)/$@