xref: /original-bsd/old/roff/troff_font/Makefile (revision e59fb703)
1#
2# Copyright (c) 1987 Regents of the University of California.
3# All rights reserved.  The Berkeley software License Agreement
4# specifies the terms and conditions for redistribution.
5#
6#	@(#)Makefile	5.3	(Berkeley)	05/11/89
7#
8CFLAGS=	-O
9LIBC=	/lib/libc.a
10SRCS=	mkfont.c
11OBJS=	mkfont.o
12
13all: mkfont
14
15mkfont: ${OBJS} ${LIBC}
16	${CC} -o $@ ${CFLAGS} ${OBJS}
17
18clean: ${SRCS}
19	rm -f ${OBJS} core mkfont
20
21cleandir: clean
22	rm -f ${MAN} tags .depend
23
24depend: ${SRCS}
25	mkdep ${CFLAGS} ${SRCS}
26
27lint: FRC
28	lint ${CFLAGS} ${SRCS}
29
30tags: FRC
31	ctags ${SRCS}
32
33install FRC:
34