X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Makefile.cfg;h=022a02ef573eb705a4711817ffb39f28f401e64a;hb=4be667e4d60a9e4caf76c2366830a5b315bd1e66;hp=c030d4754f09c00385f7b4cf98c141b5a80d9035;hpb=04a050f42807686dc119838c82372409246d55bb;p=tpg%2Facess2.git diff --git a/Makefile.cfg b/Makefile.cfg index c030d475..022a02ef 100644 --- a/Makefile.cfg +++ b/Makefile.cfg @@ -7,6 +7,7 @@ ACESSDIR := $(shell cd $(ACESSDIR) && pwd) # Install destination configuration DISTROOT := -i $(ACESSDIR)/Acess2.img ::/Acess2 +NCC := $(CC) xCP := mcopy -D o xMKDIR := mmd -D s @@ -63,3 +64,10 @@ MODULES += Input/Keyboard Input/Mouse MODULES += IPStack # So the other modules are loaded before it #DYNMODS := USB/Core #DYNMODS += Filesystems/InitRD + +# BUILD_DIST=y - Install to ./Dist +ifneq ($(BUILD_DIST),) + DISTROOT := $(ACESSDIR)/Dist + xCP := cp + xMKDIR := mkdir -p +endif