Fiddling with build system
authorJohn Hodge <[email protected]>
Wed, 23 Mar 2011 05:45:58 +0000 (13:45 +0800)
committerJohn Hodge <[email protected]>
Wed, 23 Mar 2011 05:45:58 +0000 (13:45 +0800)
Makefile.cfg
Usermode/Applications/Makefile.cfg

index 8c5b59b..ff49c16 100644 (file)
@@ -11,8 +11,8 @@ ACESSDIR := $(dir $(lastword $(MAKEFILE_LIST)))
 ACESSDIR := $(shell cd $(ACESSDIR) && pwd)
 
 # Default build programs
-CC := gcc
-LD := ld
+#CC := gcc
+#LD := ld
 AS := nasm
 DISASM := objdump -d -S
 RM := @rm -f
@@ -29,7 +29,9 @@ endif
 ifeq ($(ARCHDIR),)
        ARCHDIR := x86
 endif
+ifneq ($(ARCH),host)
 -include $(ACESSDIR)/Makefile.$(ARCHDIR).cfg
+endif
 
 # Makefile.user.cfg is not part of the Acess git repo,
 # It is for overriding the options in this file
index 2e64b9d..3aa1a79 100644 (file)
@@ -1,18 +1,12 @@
 # Acess 2 Applications
 # General Makefile
 
-#-include ../../../Makefile.cfg
-# satisfying 2 deep applications
-#ifeq ($(ACESSDIR),)
-#      -include ../../../../Makefile.cfg
-#endif
-
 # Include Usermode Makefile.cfg
 include $(dir $(lastword $(MAKEFILE_LIST)))../Makefile.cfg
 
-
 ASFLAGS = -felf
 CPPFLAGS = -I$(ACESSUSERDIR)/include/
 CFLAGS   = -fno-stack-protector $(CPPFLAGS)
 LDFLAGS  = -T $(OUTPUTDIR)Libs/acess.ld -rpath-link $(OUTPUTDIR)Libs -L $(OUTPUTDIR)Libs -I /Acess/Libs/ld-acess.so -lld-acess -lc
+
 DIR = Bin

UCC git Repository :: git.ucc.asn.au