new template
[unix-history] / usr / src / games / quiz / 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 4.3 (Berkeley) %G%
#
CFLAGS= -O
LIBC= /lib/libc.a
SRCS= quiz.c
OBJS= quiz.o
all: quiz
quiz: ${OBJS} ${LIBC}
${CC} -o $@ ${CFLAGS} ${OBJS}
clean: FRC
rm -f ${OBJS} core quiz
depend: FRC
mkdep ${CFLAGS} ${SRCS}
install: FRC
install -s -o bin -g bin -m 755 quiz ${DESTDIR}/usr/games/quiz
cp -r quiz.k ${DESTDIR}/usr/games/lib
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.
quiz.o: quiz.c /usr/include/stdio.h /usr/include/signal.h
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY