aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/Makefile.sun4
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-07 21:31:49 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-07 21:31:49 +0100
commit79b59f9b30fb6a1fdf8c3efb446271f7cb00d434 (patch)
treef6ade4ccbc3af20d825edacfd12b5da8ded8d240 /FICS/Makefile.sun4
FICS 1.6.2
Diffstat (limited to 'FICS/Makefile.sun4')
-rw-r--r--FICS/Makefile.sun445
1 files changed, 45 insertions, 0 deletions
diff --git a/FICS/Makefile.sun4 b/FICS/Makefile.sun4
new file mode 100644
index 0000000..a82e6b3
--- /dev/null
+++ b/FICS/Makefile.sun4
@@ -0,0 +1,45 @@
+# Makefile for FICS
+# This was originally written under NeXTSTEP
+#
+# Define the system below that you are compiling on.
+SYSFLAG=-DSYSTEM_SUN4
+# 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
+
+# dfree is temporary, for debugging only, and works only if you are using
+# the GNU C library --mann
+#MORESRCS=dfree.c
+#MOREOBJS=dfree.o
+#you may have to hash out the above two
+
+# 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.