From 79b59f9b30fb6a1fdf8c3efb446271f7cb00d434 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Thu, 7 Dec 2023 21:31:49 +0100 Subject: FICS 1.6.2 --- FICS/Makefile.next | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 FICS/Makefile.next (limited to 'FICS/Makefile.next') diff --git a/FICS/Makefile.next b/FICS/Makefile.next new file mode 100644 index 0000000..90de8f0 --- /dev/null +++ b/FICS/Makefile.next @@ -0,0 +1,28 @@ +# 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 -- cgit v1.2.3