Merge from vendor branch AWK:
[dragonfly.git] / contrib / nvi / ip_cl / Makefile
1 # TR turns on tracing, to the specified file.
2 TR=     -DTR=\"/dev/ttypa\"
3 #TR=    -DTR=\"__log\"
4
5 # VI is the binary that ip_cl runs.
6 VI=     -DVI=\"../build.local/nvi\"
7
8 DEBUG=  -DDEBUG -g
9 INC=    -I. -I../build.local -I../include
10 CFLAGS= $(DEBUG) $(TR) $(VI) $(INC)
11
12 OBJS=   ip_cl.o
13
14 LIBS=   -lcurses -ltermcap
15
16 ip_cl: ${OBJS}
17         ${CC} ${OBJS} -o $@ ${LIBS}
18
19 clean:
20         rm -f ip_cl ${OBJS}