blob: 92d11214760bb6802f026b3fce9ce0a4f66b8700 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD$
PROG= morse
MAN= morse.6
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
CFLAGS += -DSPEAKER=\"/dev/speaker\"
.endif
.include <bsd.prog.mk>
|