xref: /netbsd-src/sys/arch/x68k/usr.bin/bellctrl/Makefile (revision f893ffa835ada59d584709b5d73169efa858c56d)
1#	$NetBSD: Makefile,v 1.10 2011/05/19 21:40:11 tsutsui Exp $
2#
3# Makefile for bellctrl
4
5all: bellctrl sample.fm
6
7sample.fm: sample_fm.c
8	$(CC) -c -o sample.aout ${.CURDIR}/sample_fm.c
9	strip sample.aout
10	dd bs=1 skip=32 count=52 if=sample.aout of=$@
11	rm sample.aout
12
13PROG=	bellctrl
14NOMAN=	# defined
15CPPFLAGS+=-I${.CURDIR}/../../..
16
17CLEANFILES+=sample.fm
18
19.include <bsd.prog.mk>
20