fbe9d42ecb
C++. Took hints from the FreeBSD port, but rewrote this one from scratch.
24 lines
623 B
Text
24 lines
623 B
Text
$NetBSD: patch-ab,v 1.1.1.1 1999/05/18 23:14:16 tv Exp $
|
|
|
|
--- ../ui/sound/makefile.orig Tue May 18 10:25:27 1999
|
|
+++ ../ui/sound/makefile Tue May 18 10:26:05 1999
|
|
@@ -1,9 +1,8 @@
|
|
###############################################################################
|
|
## C compiler to use
|
|
###############################################################################
|
|
-CC = gcc
|
|
|
|
-CFLAGS = -DWIN32 -O -ansi -Wall
|
|
+CPPFLAGS = -DWIN32
|
|
|
|
OBJS = TIASound.o
|
|
|
|
@@ -29,7 +28,7 @@
|
|
uss: oss
|
|
|
|
oss: $(OBJS) OSS.o
|
|
- $(CC) -o stella-sound OSS.o $(OBJS)
|
|
+ $(CC) -o stella-sound OSS.o $(OBJS) -lossaudio
|
|
|
|
clean:
|
|
rm -f *.o stella-sound
|