Current Path : /usr/src/contrib/nvi/ip_cl/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/contrib/nvi/ip_cl/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}