diff options
-rw-r--r-- | Makefile.windows_mingw | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile.windows_mingw b/Makefile.windows_mingw new file mode 100644 index 0000000..e9d8df2 --- /dev/null +++ b/Makefile.windows_mingw @@ -0,0 +1,13 @@ +CC = gcc
+CFLAGS = -DI486 -DGNU_C -D_WINDOWS_ -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
+
+cg.exe: $(OBJECTS)
+ gcc -s $(OBJECTS) -o $@
+
+clean:
+ rm $(OBJECTS)
+
+# DO NOT DELETE
|