include ../../config.mk

PROGRAMS =  callbackC callbackM

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"
