aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/Makefile.next
diff options
context:
space:
mode:
Diffstat (limited to 'FICS/Makefile.next')
-rw-r--r--FICS/Makefile.next28
1 files changed, 0 insertions, 28 deletions
diff --git a/FICS/Makefile.next b/FICS/Makefile.next
deleted file mode 100644
index 90de8f0..0000000
--- a/FICS/Makefile.next
+++ /dev/null
@@ -1,28 +0,0 @@
-# Makefile for FICS
-# This was originally written under NeXTSTEP
-#
-# Define the system below that you are compiling on.
-SYSFLAG=-DSYSTEM_NEXT
-
-# Set the flags for your system
-
-# Turn on optimization
-# OPTFLAGS=-O
-
-# Turn on debugging
-DEBUGFLAGS=-g -DDEBUG
-
-# Anything else you care to flag?
-OTHERFLAGS=-Wall
-
-# Which architectures are you compiling for? (NeXTSTEP)
-# ARCHFLAGS=-arch m68k -arch i386
-
-PROGRAM=fics
-
-
-CC=cc
-CFLAGS=${SYSFLAG} ${OPTFLAGS} ${DEBUGFLAGS} ${OTHERFLAGS} ${ARCHFLAGS}
-LNFLAGS=-lm
-
-include ./Makefile.common