X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Makefile.cfg;h=022a02ef573eb705a4711817ffb39f28f401e64a;hb=4be667e4d60a9e4caf76c2366830a5b315bd1e66;hp=716eb5fc98fcd87209e9c52b3b33644132e76434;hpb=13cfd41138fbb925b9a9e239ecd58d1a768ac5aa;p=tpg%2Facess2.git diff --git a/Makefile.cfg b/Makefile.cfg index 716eb5fc..022a02ef 100644 --- a/Makefile.cfg +++ b/Makefile.cfg @@ -2,14 +2,15 @@ # Acess2 Build Configuration # +ACESSDIR := $(dir $(lastword $(MAKEFILE_LIST))) +ACESSDIR := $(shell cd $(ACESSDIR) && pwd) + # Install destination configuration -DISTROOT := a:/Acess2 +DISTROOT := -i $(ACESSDIR)/Acess2.img ::/Acess2 +NCC := $(CC) xCP := mcopy -D o xMKDIR := mmd -D s -ACESSDIR := $(dir $(lastword $(MAKEFILE_LIST))) -ACESSDIR := $(shell cd $(ACESSDIR) && pwd) - -include $(ACESSDIR)/Makefile.Version.cfg # Default build programs @@ -40,8 +41,8 @@ ifneq ($(ARCH),host) endif endif -ifeq ($(CONFIG),) - CONFIG := default +ifeq ($(PLATFORM),) + PLATFORM := default endif # Makefile.user.cfg is not part of the Acess git repo, @@ -51,12 +52,22 @@ endif DRIVERS := MODULES := +MODULES += Filesystems/RAMDisk MODULES += Filesystems/Ext2 MODULES += Filesystems/FAT MODULES += Filesystems/NTFS +MODULES += Storage/LVM -include $(ACESSDIR)/BuildConf/$(ARCH)/$(CONFIG).mk +include $(ACESSDIR)/BuildConf/$(ARCH)/$(PLATFORM).mk +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