Makefile
660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
include $(ROOT)/usr/include/make/PRdefs
OPTIMIZER = -g
TARGETS=libbank.a
#LC++OPTS = -mips2 -fullwarn -G 0
LC++INCS = -I. -I$(ROOT)/usr/include/PR
LLDLIBS= -L $(ROOT)/usr/lib -L $(ROOT)/usr/lib/PR
C++FILES = \
bank.c++ \
bankfile.c++ \
instrument.c++ \
sound.c++ \
keymap.c++ \
wavetable.c++ \
loop.c++ \
book.c++ \
envelope.c++ \
hash.c++ \
list.c++ \
symtab.c++ \
objtab.c++ \
object.c++ \
error.c++ \
decl.c++ \
soundfile.c++ \
misc.c++ \
wavtab.c++ \
sequence.c++
libbank.a: Makefile $(OBJECTS)
$(AR) rc $@ $(OBJECTS)
default: $(TARGETS)
include $(COMMONRULES)
headers exports:
install: default
exports install: default