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.clean | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 FICS/Makefile.clean (limited to 'FICS/Makefile.clean') diff --git a/FICS/Makefile.clean b/FICS/Makefile.clean new file mode 100644 index 0000000..525f579 --- /dev/null +++ b/FICS/Makefile.clean @@ -0,0 +1,50 @@ +# Makefile for FICS +# This was originally written under NeXTSTEP +# + +# 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 -lcompat -lcrypt + +# 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 + +# This is just for versions distributed with timeseal. +MORESRCS=timeseal.c +MOREOBJS=timeseal.o + +# Define the system below that you are compiling on. +# Set the flags for your system + +SYSFLAG=-DNETBSD -DTIMESEAL + +# 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. -- cgit v1.2.3