PACKAGE = invalid-only-for-proof include $(ROOTSYS)/test/Makefile.arch SRCS = $(wildcard *.cxx) HDRS = $(SRCS:.cxx=.h) DHDR = $(PACKAGE)LinkDef.h ifndef PACKCXXFLAGS PACKCXXFLAGS = $(CXXFLAGS) endif ALICEINC = -I. ALICEINC += -I./$(PACKAGE)/ ifneq ($(ESD_INCLUDE),) ALICEINC += -I../$(ESD_INCLUDE) endif ifneq ($(AOD_INCLUDE),) ALICEINC += -I../$(AOD_INCLUDE) endif ifneq ($(STEERBase_INCLUDE),) ALICEINC += -I../$(STEERBase_INCLUDE) endif # only if no par file was loaded before ifeq ($(ALICEINC),-I.) ifneq ($(ALICE_ROOT),) ALICEINC += -I$(ALICE_ROOT)/include endif endif CXXFLAGS += $(ALICEINC) -g SRCS += G__$(PACKAGE).cxx OBJS = $(SRCS:.cxx=.o) lib$(PACKAGE).so: $(OBJS) @echo "Linking" $@ ... @/bin/rm -f $@ ifeq ($(PLATFORM),macosx) # We need to make both the .dylib and the .so $(LD) $(SOFLAGS)$@ $(LDFLAGS) $^ $(OutPutOpt) $@ ifneq ($(subst $(MACOSX_MINOR),,1234),1234) ifeq ($(MACOSX_MINOR),4) ln -sf $@ $(subst .$(DllSuf),.so,$@) else $(LD) -bundle -undefined $(UNDEFOPT) $(LDFLAGS) $^ \ $(OutPutOpt) $(subst .$(DllSuf),.so,$@) endif endif else ifeq ($(PLATFORM),win32) bindexplib $* $^ > $*.def lib -nologo -MACHINE:IX86 $^ -def:$*.def \ $(OutPutOpt)$(EVENTLIB) $(LD) $(SOFLAGS) $(LDFLAGS) $^ $*.exp $(LIBS) \ $(OutPutOpt)$@ else $(LD) $(SOFLAGS) $(LDFLAGS) $^ $(OutPutOpt) $@ $(EXPLLINKLIBS) endif endif @chmod a+x $@ @echo "done" %.o: %.cxx %.h $(CXX) $(PACKCXXFLAGS) -c $< -o $@ clean: @rm -f $(OBJS) *.so G__$(PACKAGE).* G__$(PACKAGE).cxx G__$(PACKAGE).h: $(HDRS) $(DHDR) @echo "Generating dictionaries ..." $(ALICEINC) rootcint -f $@ -c $(CINTFLAGS) $(ALICEINC) $^