6d8200ff0c
The following repo-copies were made (by Mark Murray): sys/i386/isa/spkr.c -> sys/dev/speaker/spkr.c sys/i386/include/speaker.h -> sys/dev/speaker/speaker.h share/man/man4/man4.i386/spkr.4 -> share/man/man4/spkr.4
12 lines
205 B
Makefile
12 lines
205 B
Makefile
# @(#)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>
|