# Author: M.Ogg ogg@ece.utexas.edu # Date: January, 1996 # # Build files for detector geometry # CC = g++ CFLAGS = -O2 -Wall all: make detector detector: detector.o geometry.o $(CC) $(CFLAGS) $(DFLAGS) -o detector detector.o geometry.o -lm detector.o: detector.cc geometry.hh $(CC) $(CFLAGS) $(DFLAGS) -c detector.cc geometry.o: geometry.cc geometry.hh $(CC) $(CFLAGS) $(DFLAGS) -c geometry.cc clean: rm -f *.o detector