Kernel/VTerm - "Fix" wrapping issue in VTerm (why was old behavior there?)
[tpg/acess2.git] / BuildConf / host / Makefile.cfg
1 #
2 # Acess2 Host Native makefile
3 # - Used for forcing the architecture
4 #
5
6 SAVED_CC_ := $(CC)
7 SAVED_LD_ := $(LD)
8
9 ifeq ($(HOST_ARCH),)
10 $(error Please set HOST_ARCH to the architecture to compile, e.g. x86)
11 endif
12
13 include $(ACESSDIR)/BuildConf/$(HOST_ARCH)/Makefile.cfg
14
15 OBJDUMP := objdump -S
16
17 CC_SUFFIX = 
18
19 ifeq ($(HOST_ARCH),x86)
20 CC_SUFFIX := -m32
21 LD_SUFFIX := -melf_i386
22 endif
23
24 CC := $(SAVED_CC_) $(CC_SUFFIX)
25 LD := $(SAVED_LD_) $(LD_SUFFIX)
26

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