X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Makefile.cfg;h=d12710cf90852936131825e5ad44055a786b681c;hb=732560562067c6ebf5bb380c0d5e6db93518fb49;hp=716eb5fc98fcd87209e9c52b3b33644132e76434;hpb=13cfd41138fbb925b9a9e239ecd58d1a768ac5aa;p=tpg%2Facess2.git diff --git a/Makefile.cfg b/Makefile.cfg index 716eb5fc..d12710cf 100644 --- a/Makefile.cfg +++ b/Makefile.cfg @@ -2,20 +2,23 @@ # Acess2 Build Configuration # -# Install destination configuration -DISTROOT := a:/Acess2 -xCP := mcopy -D o -xMKDIR := mmd -D s +V ?= @ ACESSDIR := $(dir $(lastword $(MAKEFILE_LIST))) ACESSDIR := $(shell cd $(ACESSDIR) && pwd) +# Install destination configuration +DISTROOT := -i $(ACESSDIR)/Acess2.img ::/Acess2 +NCC := $(CC) +NCXX := $(CXX) +xCP := mcopy -D o +xMKDIR := mmd -D s + -include $(ACESSDIR)/Makefile.Version.cfg # Default build programs #CC := gcc #LD := ld -AS := nasm DISASM := objdump -d -S RM := @rm -f STRIP := strip @@ -34,14 +37,28 @@ ifeq ($(ARCHDIR),) ARCHDIR := x86 endif +# Default compilers +ifneq ($(ARCHDIR),native) +CC = $(COMPILERDIR)bin/$(TRIPLET)-gcc +CXX = $(COMPILERDIR)bin/$(TRIPLET)-g++ +LD = $(COMPILERDIR)bin/$(TRIPLET)-ld +OBJDUMP = $(COMPILERDIR)bin/$(TRIPLET)-objdump + ifeq ($(AS),as) + AS = $(COMPILERDIR)bin/$(TRIPLET)-gcc -c + endif +endif + ifneq ($(ARCH),host) ifneq ($(ARCHDIR),$(ARCH)) include $(ACESSDIR)/BuildConf/$(ARCHDIR)/Makefile.cfg endif endif -ifeq ($(CONFIG),) - CONFIG := default +COMPILERDIR := $(ACESSDIR)/Externals/Output/$(ARCHDIR)-BUILD/ +PATH := $(COMPILERDIR)bin/ $(PATH) + +ifeq ($(PLATFORM),) + PLATFORM := default endif # Makefile.user.cfg is not part of the Acess git repo, @@ -51,12 +68,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