summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.linux6414
-rw-r--r--Makefile.windows14
2 files changed, 0 insertions, 28 deletions
diff --git a/Makefile.linux64 b/Makefile.linux64
deleted file mode 100644
index 0c66714..0000000
--- a/Makefile.linux64
+++ /dev/null
@@ -1,14 +0,0 @@
-
-CC = gcc
-CFLAGS = -DI486 -DGNU_C -DLINUX -DLINUX_ELF -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 -s $(OBJECTS) -o $@
-
-clean:
- rm $(OBJECTS)
-
-# DO NOT DELETE
diff --git a/Makefile.windows b/Makefile.windows
deleted file mode 100644
index 891b577..0000000
--- a/Makefile.windows
+++ /dev/null
@@ -1,14 +0,0 @@
-NO_CYGWIN = 1
-CC = gcc
-CFLAGS = -mno-cygwin -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 -mno-cygwin -s $(OBJECTS) -o $@
-
-clean:
- rm $(OBJECTS)
-
-# DO NOT DELETE