src/eventRecordInterfaces/Makefile
00001 include ../make.inc
00002
00003 SOURCES_CC = PhotosHEPEVTEvent.cxx PhotosHEPEVTParticle.cxx
00004
00005 ifneq ($(HEPMCLOCATION), )
00006 SOURCES_CC += PhotosHepMCParticle.cxx PhotosHepMCEvent.cxx
00007 endif
00008
00009 OBJECTS_CC=$(SOURCES_CC:.cxx=.o)
00010
00011 %.o: %.cxx
00012 $(CC) $(CFLAGS) $(DEBUG) -I$(HEPMCLOCATION)/include -I. -I../utilities -I../photosFortranInterfaces -I../photosCInterfaces -c $< -o $@
00013
00014 all: $(OBJECTS_CC)
00015
00016 clean:
00017 rm -f *.o *~;