CFLAGS =  -O
INST = modelinst.o profile.o
Q = quiet.o
TEST = testit.o testprof.o
LDFLAGS =  /musr/bin/cmix.o /musr/lib/genlib.a -lm

r2w1:  /musr/H/ugens.h  $(INST) /musr/bin/cmix.o
	  cc -o r2w1 $(INST) $(LDFLAGS)
	  
testit:  /musr/H/ugens.h  $(TEST) /musr/bin/cmix.o
	  cc -o testit $(TEST) $(LDFLAGS)
	  
quiet:  /musr/H/ugens.h  $(Q) /musr/bin/cmix.o
	  cc -o quiet $(Q) $(LDFLAGS)
