aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/Makefile.sunos-glibc
blob: 48b70d5300cb3b8ea238da40041ec1c0356a2e7e (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Makefile for FICS
# This was originally written under NeXTSTEP
#
SYSFLAG=-DSYSTEM_SUN4 -DTIMESEAL

# 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} -I/usr/local/glibc-include
LNFLAGS=-lm -L/usr/local/lib/glibc

# 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=-DSYSTEM_SUN4 -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.