From: John Hodge Date: Thu, 24 Mar 2011 02:35:02 +0000 (+0800) Subject: Fixing gitigore, added a config file for the 'host' architecture X-Git-Tag: rel0.10~142 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=6ca1836db8d0935bb5ec9d04abb0819e55d28bb8;p=tpg%2Facess2.git Fixing gitigore, added a config file for the 'host' architecture - Used for using clang's scan-build tool --- diff --git a/.gitignore b/.gitignore index 4cea20a2..e229ec91 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,5 @@ ApiDoc/ Usermode/Output/ gitstats/ .*.swp + +obj-*/ diff --git a/Makefile.host.cfg b/Makefile.host.cfg new file mode 100644 index 00000000..0879ad74 --- /dev/null +++ b/Makefile.host.cfg @@ -0,0 +1,13 @@ +# +# Acess2 Host Native makefile +# - Used for forcing the architecture +# + +SAVED_CC_ := $(CC) +SAVED_LD_ := $(LD) + +include $(ACESSDIR)/Makefile.x86_64.cfg + +CC := $(SAVED_CC_) +LD := $(SAVED_LD_) +