CFLAGS = -g
CPPFLAGS = -g
CC = gcc
CPP = g++
RTOBJS = START.o BEND.o FRET.o START1.o BEND1.o FRET1.o VSTART1.o \
	 rtprofile.o
COBJS =  randfill.o sset.o strum.o squisher.o delayset.o delayclean.o \
	dist.o delay.o
CMIXOBJS = ../../sys/cmix.o ../../lib/genlib.a ../../rtstuff/profile.o

STRUM: $(RTOBJS) $(COBJS) $(CMIXOBJS)
	$(CPP) -o STRUM $(RTOBJS) $(COBJS) $(CMIXOBJS) -lm

