NetBSD/sys/arch/x68k/usr.bin/bellctrl/Makefile

20 lines
372 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.5 1998/08/04 16:39:55 minoura Exp $
1996-08-30 21:43:56 +04:00
#
1996-05-05 16:17:03 +04:00
# Makefile for bellctrl
all: bellctrl sample.fm
sample.fm: sample_fm.c
$(CC) -c -o sample.aout ${.CURDIR}/sample_fm.c
strip sample.aout
dd bs=1 skip=32 count=52 if=sample.aout of=$@
rm sample.aout
PROG = bellctrl
1997-06-22 11:02:27 +04:00
NOMAN= yes
1997-10-27 01:09:43 +03:00
CPPFLAGS+=-I${.CURDIR}/../../..
1996-05-05 16:17:03 +04:00
CLEANFILES+=sample.fm
1996-05-05 16:17:03 +04:00
.include <bsd.prog.mk>