aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/Makefile.alpha
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.alpha
FICS 1.6.2
Diffstat (limited to 'FICS/Makefile.alpha')
-rw-r--r--FICS/Makefile.alpha33
1 files changed, 33 insertions, 0 deletions
diff --git a/FICS/Makefile.alpha b/FICS/Makefile.alpha
new file mode 100644
index 0000000..80c1584
--- /dev/null
+++ b/FICS/Makefile.alpha
@@ -0,0 +1,33 @@
+# Makefile for FICS
+# This version is for the Alpha under Digital OSF/1 Unix
+#
+# Define the system below that you are compiling on.
+#SYSFLAG= -DSYSV -DSYSTEM_AIX
+SYSFLAG=
+
+# Set the flags for your system
+
+# Turn on optimization
+# With optimization on you may get errors during compiling.
+#OPTFLAGS=-O
+
+# Turn on debugging
+DEBUGFLAGS= -DDEBUG -g
+
+# Anything else you care to flag?
+#OTHERFLAGS= -qlanglvl=saa
+OTHERFLAGS= -DHAVE_STDARG
+
+# Which architectures are you compiling for? (NeXTSTEP)
+# ARCHFLAGS=-arch m68k -arch i386
+
+PROGRAM=fics
+
+
+#CC=gcc -ansi -pedantic -O3 -pipe -fomit-frame-pointer
+#CC=xlc
+CC=cc
+CFLAGS=${SYSFLAG} ${OPTFLAGS} ${DEBUGFLAGS} ${OTHERFLAGS} ${ARCHFLAGS}
+LNFLAGS=-lm
+
+include ./Makefile.common