Makefile 660 Bytes
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