X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Makefile.cfg;h=1eedf8ec876cbaa7b9262f7b68b0c8d2c5a9f7dc;hb=3c283c4831c40c14d308a54cefb997832a860bca;hp=7b0ad8c324ab1ea6835df742dd696dfb09bc787b;hpb=8dcc3e209d0d728565a18c8dca2b0ba220b74a6f;p=tpg%2Facess2.git diff --git a/Makefile.cfg b/Makefile.cfg index 7b0ad8c3..1eedf8ec 100644 --- a/Makefile.cfg +++ b/Makefile.cfg @@ -2,14 +2,16 @@ # 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) +NCXX := $(CXX) 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 @@ -34,12 +36,23 @@ 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 +endif + ifneq ($(ARCH),host) ifneq ($(ARCHDIR),$(ARCH)) include $(ACESSDIR)/BuildConf/$(ARCHDIR)/Makefile.cfg endif endif +COMPILERDIR := $(ACESSDIR)/Externals/Output/$(ARCHDIR)-BUILD/ +PATH := $(COMPILERDIR)bin/ $(PATH) + ifeq ($(PLATFORM),) PLATFORM := default endif @@ -63,3 +76,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