summaryrefslogtreecommitdiff
path: root/Makefile.macosx64
diff options
context:
space:
mode:
authorJohn van Groningen2011-02-01 14:46:03 +0000
committerJohn van Groningen2011-02-01 14:46:03 +0000
commite42ad7dbd3b52c70828653d075a5eef64a3bbd9c (patch)
treea62a9e7e548aeda1f089d1e7bf157a4ba38bad10 /Makefile.macosx64
parentport to Mac OS X (AMD64) (diff)
add makefile for Mac OS X (AMD64)
Diffstat (limited to 'Makefile.macosx64')
-rw-r--r--Makefile.macosx6414
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.macosx64 b/Makefile.macosx64
new file mode 100644
index 0000000..349dfb2
--- /dev/null
+++ b/Makefile.macosx64
@@ -0,0 +1,14 @@
+
+CC = gcc
+CFLAGS = -DI486 -DGNU_C -DLINUX -DMACH_O64 -DG_AI64 -O -fomit-frame-pointer
+
+OBJECTS = cg.o cgcalc.o cgcode.o cginput.o cginstructions.o \
+ cglin.o cgopt.o cgaas.o cgawas.o cgstack.o
+
+cg: $(OBJECTS)
+ gcc $(OBJECTS) -o $@
+
+clean:
+ rm $(OBJECTS)
+
+# DO NOT DELETE