summaryrefslogtreecommitdiff
path: root/Makefile.windowst
diff options
context:
space:
mode:
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