#Makefile to run the smoke bot. #To use, simply type 'make smoke' # #This will run smokebot on the theater program #Must be local to testtheater.pl and smokebot.pl MAINPROGRAM=testtheater.pl SMOKEBOT=smokebot.pl OUTPUT=rawtest.dat smoke: ./$(MAINPROGRAM) > $(OUTPUT) ./$(SMOKEBOT) $(OUTPUT)