~ubuntu-branches/debian/squeeze/stella/squeeze

« back to all changes in this revision

Viewing changes to src/ui/sound/makefile

  • Committer: Bazaar Package Importer
  • Author(s): Tom Lear
  • Date: 1999-11-06 16:41:05 UTC
  • Revision ID: james.westby@ubuntu.com-19991106164105-iygopamo5mpcozvx
Tags: upstream-1.1
ImportĀ upstreamĀ versionĀ 1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
###############################################################################
 
2
## C compiler to use
 
3
###############################################################################
 
4
CC = gcc
 
5
 
 
6
CFLAGS = -DWIN32 -O -ansi -Wall
 
7
 
 
8
OBJS = TIASound.o
 
9
 
 
10
all:
 
11
        @echo ""
 
12
        @echo "To build stella-sound, type: 'make <version>'"
 
13
        @echo ""
 
14
        @echo "where <version> is one of:"
 
15
        @echo ""
 
16
        @echo "  linux   Linux (same as uss)"
 
17
        @echo "  uss     Systems with the Unix Sound System (same as oss)"
 
18
        @echo "  oss     systems with the Open Sound System"
 
19
        @echo "  bsdi    BSD/OS 4.0"
 
20
        @echo ""
 
21
        @echo "Hopefully new versions will be added soon!"
 
22
        @echo ""
 
23
 
 
24
bsdi:
 
25
        make oss CFLAGS="-DWIN32 -O3 -Wall"
 
26
 
 
27
linux: oss
 
28
 
 
29
uss: oss
 
30
 
 
31
oss: $(OBJS) OSS.o
 
32
        $(CC) -o stella-sound OSS.o $(OBJS)
 
33
 
 
34
clean:
 
35
        rm -f *.o stella-sound
 
36