X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Makefile.cfg;h=022a02ef573eb705a4711817ffb39f28f401e64a;hb=a024e6f4374ca25465ce3d17bb4685200740d9d6;hp=53784d293a0dacc7b6af6f5b60238b4d96183283;hpb=2b443383e8a23c0cfdd97cb4b7ef4a5694ac0e27;p=tpg%2Facess2.git diff --git a/Makefile.cfg b/Makefile.cfg index 53784d29..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 @@ -51,6 +52,7 @@ endif DRIVERS := MODULES := +MODULES += Filesystems/RAMDisk MODULES += Filesystems/Ext2 MODULES += Filesystems/FAT MODULES += Filesystems/NTFS @@ -62,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