blob: 2b5f6881af6f94e21e606d88d14ab6414bc4d347 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
|