Mercurial > ~darius > hgwebdir.cgi > paradise_server
view pped/Makefile @ 7:814de70c9f67
Initial revision
author | darius |
---|---|
date | Sat, 06 Dec 1997 04:37:04 +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