xref: /original-bsd/old/lisp/fp/fp.tahoe/Makefile (revision a425a1c9)
1#	@(#)Makefile	5.4 (Berkeley) 05/13/91
2
3CFLAGS=	-O
4LIBC=	/lib/libc.a
5SRCS=	fp.c
6OBJS=
7MAN=
8
9all: fp
10
11fp: ${LIBC}
12	${CC} -o $@ ${CFLAGS} $@.c
13
14clean:
15	rm -f ${OBJS} core fp
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 fp ${DESTDIR}/usr/bin
25
26lint: ${SRCS}
27	lint ${CFLAGS} ${SRCS}
28
29tags: ${SRCS}
30	ctags ${SRCS}
31