diff options
Diffstat (limited to 'FICS/Makefile.ultrix')
-rw-r--r-- | FICS/Makefile.ultrix | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/FICS/Makefile.ultrix b/FICS/Makefile.ultrix new file mode 100644 index 0000000..2b5f688 --- /dev/null +++ b/FICS/Makefile.ultrix @@ -0,0 +1,31 @@ +# Makefile for FICS +# This was originally written under NeXTSTEP +# +# Define the system below that you are compiling on. +# SYSFLAG=-DSYSTEM_NEXT +SYSFLAG=-DSYSTEM_ULTRIX + +# Set the flags for your system + +# Turn on optimization +# There seems to be an optimization bug which screws up +# ratings calculation. +# OPTFLAGS=-O + +# Turn on debugging +DEBUGFLAGS=-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 |