CXXFLAGS = -std=c++11 -pedantic -Wall PROGS = next-event-simple next-event next-event2 next-event-anim all: $(PROGS) run: $(PROGS) for i in $(PROGS); do echo "./$$i: "; ./$$i; done clean: rm -f $(PROGS) pack: clean tar czvf next-event-examples.tar.gz *.cc *.html Makefile