CFLAGS = -g
CPPFLAGS = -g
CC = gcc
CPP = g++
NOISE = noise.o
LDFLAGS =  ../../sys/cmix.o ../../lib/genlib.a ../../rtstuff/rtprofile.o \
	-lm


noise:  ../../H/ugens.h  $(NOISE) ../../sys/cmix.o
	$(CPP) -o noise $(NOISE) $(LDFLAGS)

clean:
	rm -rf *~ *.o core noise


