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

20 lines
370 B
Makefile

# $NetBSD: Makefile,v 1.7 1999/03/16 16:30:22 minoura Exp $
#
# 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
MKMAN= no
CPPFLAGS+=-I${.CURDIR}/../../..
CLEANFILES+=sample.fm
.include <bsd.prog.mk>