File: Makefile

package info (click to toggle)
vigor 0.016-24
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,936 kB
  • ctags: 3,945
  • sloc: ansic: 44,558; tcl: 1,544; sh: 1,469; makefile: 761; perl: 269; awk: 24; csh: 13
file content (20 lines) | stat: -rw-r--r-- 368 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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}