minor cleanups for cray
[unix-history] / usr / src / old / roff / troff_font / Makefile
#
# Copyright (c) 1987 Regents of the University of California.
# All rights reserved. The Berkeley software License Agreement
# specifies the terms and conditions for redistribution.
#
# @(#)Makefile 5.2 (Berkeley) %G%
#
CFLAGS= -O
LIBC= /lib/libc.a
SRCS= mkfont.c
OBJS= mkfont.o
all: mkfont
mkfont: ${OBJS} ${LIBC}
${CC} -o $@ ${CFLAGS} ${OBJS}
clean: FRC
rm -f ${OBJS} core mkfont
depend: FRC
mkdep ${CFLAGS} ${SRCS}
install: FRC
lint: FRC
lint ${CFLAGS} ${SRCS}
tags: FRC
ctags ${SRCS}
FRC:
# DO NOT DELETE THIS LINE -- mkdep uses it.
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
mkfont.o: mkfont.c mkfont1.c
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY