freebsd-dev/contrib/nvi/ip_cl/Makefile
Peter Wemm b8ba871bd9 Import of nvi-1.79, minus a few bits that we dont need (eg: postscript
files, curses, db, regex etc that we already have).  The other glue will
follow shortly.

Obtained from: Keith Bostic <bostic@bostic.com>
1996-11-01 06:45:43 +00:00

21 lines
368 B
Makefile

# TR turns on tracing, to the specified file.
TR= -DTR=\"/dev/ttypa\"
#TR= -DTR=\"__log\"
# VI is the binary that ip_cl runs.
VI= -DVI=\"../build.local/nvi\"
DEBUG= -DDEBUG -g
INC= -I. -I../build.local -I../include
CFLAGS= $(DEBUG) $(TR) $(VI) $(INC)
OBJS= ip_cl.o
LIBS= -lcurses -ltermcap
ip_cl: ${OBJS}
${CC} ${OBJS} -o $@ ${LIBS}
clean:
rm -f ip_cl ${OBJS}