aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/Makefile.sun5
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-09 18:16:00 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-09 18:16:00 +0100
commitcce657241c145ecccfde0ae93f73832bd5cd9900 (patch)
tree10afb62406d318b816b9d7d1ce109a44a37fed33 /FICS/Makefile.sun5
parent8938d2b895eca3437d67e094b8d86aa52dd4958e (diff)
Deleted makefiles
Diffstat (limited to 'FICS/Makefile.sun5')
-rw-r--r--FICS/Makefile.sun540
1 files changed, 0 insertions, 40 deletions
diff --git a/FICS/Makefile.sun5 b/FICS/Makefile.sun5
deleted file mode 100644
index a87dd9b..0000000
--- a/FICS/Makefile.sun5
+++ /dev/null
@@ -1,40 +0,0 @@
-# Makefile for FICS
-# This was originally written under NeXTSTEP
-#
-# Define the system below that you are compiling on.
-SYSFLAG=-DSYSTEM_SUN5
-# Set the flags for your system
-
-# Turn on optimization
-# With optimization on you may get errors during compiling.
-OPTFLAGS=
-
-# Turn on debugging
-#DEBUGFLAGS=-DDEBUG
-
-# Anything else you care to flag?
-#OTHERFLAGS=-traditional-cpp -Wall -g
-OTHERFLAGS=-Wall -g
-
-# Which architectures are you compiling for? (NeXTSTEP)
-# ARCHFLAGS=-arch m68k -arch i386
-
-PROGRAM=fics
-
-
-CC=gcc
-#cc doesn't seem to be supported at present.
-
-CFLAGS=${SYSFLAG} ${OPTFLAGS} ${DEBUGFLAGS} ${OTHERFLAGS} ${ARCHFLAGS}
-LNFLAGS=-lm
-
-
-# The following is needed when using gcc and glibc, as on caissa.
-
-MAKEDEPMORECFLAGS= -I/usr/local/include -I/usr/local/lib/gcc-lib/sparc-sun-sunos4.1.3/2.6.3/include
-
-include ./Makefile.common
-# include ./Makedist
-
-#run makedepend to fill out the info below
-# DO NOT DELETE THIS LINE -- make depend depends on it.