view pped/Makefile @ 20:9f180bf494bd default tip

Made torps and fighter wobbly. They have a chance of tracking randomly instead of staying straight or seeking if in nebulous terrain. Option is turned on when NEBULA_EFFECT contains PHOTON and/or FIGHTER.
author darius
date Wed, 24 Dec 1997 12:42:09 +0000
parents 2719a89505ba
children
line wrap: on
line source

#

# Make sure that these correctly indicate where the server source and bin
# directories are:
SERVDIR = ../src
BINDIR = ../bin

# This can also be set to gcc
CC = cc

# If you're on a SysV type system, put -DSYSV here:
#CFLAGS = -O -I${SERVDIR}

# Uncomment this line if youre on an HP/UX system:
#CFLAGS = -O Aa -I${SERVDIR} -DSYSV -D_HPUX_SOURCE
CFLAGS = -O -I${SERVDIR} -DSYSV -D_HPUX_SOURCE -DHAVE_RAND48

OBJS = data.o db.o file.o interface.o main.o


all: pped

pped: ${OBJS}
	${CC} ${CFLAGS} -o $@ ${OBJS} -lm -lcurses

clean:
	rm -f *.o *.bak core pped

install: ${BINDIR}/pped

${BINDIR}/pped: pped
	-mv ${BINDIR}/pped ${BINDIR}/pped.old
	-rm -f ${BINDIR}/pped.old
	cp pped ${BINDIR}/pped
	-chmod 700 ${BINDIR}/pped