MFC: An off-by-one malloc size was corrupting the installer's memory,
[dragonfly.git] / contrib / nvi / ip_cl / Makefile
blob9503c4dac501ecb6b6f92532f55c6fcd44685cbc
1 # TR turns on tracing, to the specified file.
2 TR= -DTR=\"/dev/ttypa\"
3 #TR= -DTR=\"__log\"
5 # VI is the binary that ip_cl runs.
6 VI= -DVI=\"../build.local/nvi\"
8 DEBUG= -DDEBUG -g
9 INC= -I. -I../build.local -I../include
10 CFLAGS= $(DEBUG) $(TR) $(VI) $(INC)
12 OBJS= ip_cl.o
14 LIBS= -lcurses -ltermcap
16 ip_cl: ${OBJS}
17 ${CC} ${OBJS} -o $@ ${LIBS}
19 clean:
20 rm -f ip_cl ${OBJS}