xref: /original-bsd/old/lisp/vlp/vlp.tahoe/Makefile (revision 244eb664)
1#	@(#)Makefile	5.3 (Berkeley) 07/01/91
2
3CFLAGS=	-O
4LIBC=	/lib/libc.a
5SRCS=	vlp.c
6OBJS=
7MAN=
8
9all: vlp
10
11vlp: ${LIBC}
12	${CC} -o $@ ${CFLAGS} $@.c
13
14clean:
15	rm -f ${OBJS} core vlp
16
17cleandir: clean
18	rm -f ${MAN} tags .depend
19
20depend: ${SRCS}
21	mkdep -p ${CFLAGS} ${SRCS}
22
23install:
24	install -s -o bin -g bin -m 755 vlp ${DESTDIR}/usr/bin
25
26lint: ${SRCS}
27	lint ${CFLAGS} ${SRCS}
28
29tags: ${SRCS}
30	ctags ${SRCS}
31