summaryrefslogtreecommitdiff
path: root/Makefile.windowst
diff options
context:
space:
mode:
authorJohn van Groningen2012-07-06 09:48:52 +0000
committerJohn van Groningen2012-07-06 09:48:52 +0000
commitb709f8c325b28ac649030c34465c6617ac2135b7 (patch)
treed1439e4756921b48b7258210e50187da5bf03cbb /Makefile.windowst
parentadd Makefile for 64 bit linux thread safe code generator (diff)
add makefiles for thread safe windows versions
Diffstat (limited to 'Makefile.windowst')
-rw-r--r--Makefile.windowst15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile.windowst b/Makefile.windowst
new file mode 100644
index 0000000..0a0b4d6
--- /dev/null
+++ b/Makefile.windowst
@@ -0,0 +1,15 @@
+NO_CYGWIN = 1
+CC = gcc
+CFLAGS = -mno-cygwin -DI486 -DGNU_C -D_WINDOWS_ -DTHREAD32 -O -fomit-frame-pointer
+
+OBJECTS = cg.o cgcalc.o cgcode.o cginput.o cginstructions.o \
+ cglin.o cgopt.o cgias.o cgiwas.o cgstack.o
+
+cgts.exe: $(OBJECTS)
+ gcc -mno-cygwin -s $(OBJECTS) -o $@
+# gcc -mno-cygwin $(OBJECTS) -o $@
+
+clean:
+ rm $(OBJECTS)
+
+# DO NOT DELETE