Fixing gitigore, added a config file for the 'host' architecture
authorJohn Hodge <[email protected]>
Thu, 24 Mar 2011 02:35:02 +0000 (10:35 +0800)
committerJohn Hodge <[email protected]>
Thu, 24 Mar 2011 02:35:02 +0000 (10:35 +0800)
- Used for using clang's scan-build tool

.gitignore
Makefile.host.cfg [new file with mode: 0644]

index 4cea20a..e229ec9 100644 (file)
@@ -30,3 +30,5 @@ ApiDoc/
 Usermode/Output/
 gitstats/
 .*.swp
+
+obj-*/
diff --git a/Makefile.host.cfg b/Makefile.host.cfg
new file mode 100644 (file)
index 0000000..0879ad7
--- /dev/null
@@ -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_)
+

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