include ../../config.mk

# need the math lib
EXTRA_LIBS = -lm

PROGRAMS =  Panner

all:	$(PROGRAMS)

clean: 
	-$(RM) $(PROGRAMS)

clobber:	clean
	-$(RM) *.o

depend:
	$(DEPEND) -s "# DO NOT DELETE"  -- $(DEFINES) $(DEPINCLUDES) -- *.C
	
install:
	@echo "no install, run demos in place"
