From 6ca1836db8d0935bb5ec9d04abb0819e55d28bb8 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Thu, 24 Mar 2011 10:35:02 +0800 Subject: [PATCH] Fixing gitigore, added a config file for the 'host' architecture - Used for using clang's scan-build tool --- .gitignore | 2 ++ Makefile.host.cfg | 13 +++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 Makefile.host.cfg 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_) + -- 2.20.1