X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=PHOS%2FMakefile;h=345eaa3e433600bd0f39d572c694aff64fd99d77;hb=3ec92887beaf530f1530aa8815ae1a2669cdc3bc;hp=69bd9293cdba55fc4bec09ad8ac1d355ed4782af;hpb=d15a28e7baaf9ecf573af1e229c75b9527e05793;p=u%2Fmrichter%2FAliRoot.git diff --git a/PHOS/Makefile b/PHOS/Makefile index 69bd9293cdb..345eaa3e433 100644 --- a/PHOS/Makefile +++ b/PHOS/Makefile @@ -1,78 +1,49 @@ -############################### PHOS Makefile ################################# +PACKAGE = invalid-only-for-proof -# Include machine specific definitions +include Makefile.arch -include $(ALICE_ROOT)/conf/GeneralDef -include $(ALICE_ROOT)/conf/MachineDef.$(ALICE_TARGET) +SRCS = $(wildcard *.cxx) +HDRS = $(SRCS:.cxx=.h) +DHDR = $(PACKAGE)LinkDef.h -PACKAGE = PHOS +ifndef PACKCXXFLAGS + PACKCXXFLAGS = $(CXXFLAGS) +endif -# C++ sources +ALICEINC = -I. -SRCS = AliPHOS.cxx AliPHOSv0.cxx AliPHOSHit.cxx \ - AliPHOSGeometry.cxx \ - AliPHOSDigit.cxx \ - AliPHOSRecPoint.cxx AliPHOSEmcRecPoint.cxx AliPHOSPpsdRecPoint.cxx \ - AliPHOSClusterizer.cxx AliPHOSClusterizerv1.cxx AliPHOSLink.cxx \ - AliPHOSReconstructioner.cxx AliPHOSTrackSegment.cxx \ - AliPHOSTrackSegmentMaker.cxx AliPHOSTrackSegmentMakerv1.cxx +### define include dir for local case and par case +ifneq ($(STEERBase_INCLUDE),) + ALICEINC += -I../$(STEERBase_INCLUDE) +endif -# C++ Headers - -HDRS = $(SRCS:.cxx=.h) PHOSLinkDef.h - -# Library dictionary - -DICT = PHOSCint.cxx -DICTH = $(DICT:.cxx=.h) -DICTO = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT)) - -# C++ Objects - -OBJS = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO) - -# C++ compilation flags - -CXXFLAGS = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/ - -ALSRCS = $(SRCS) $(SHSRCS) $(RCSRCS) $(DUSRCS) dummies.c - -ALOBJS = $(SHOBJS) $(RCOBJS) $(DUOBJS) - -##### COMMANDS ##### - -SLIBRARY = $(LIBDIR)/libPHOS.$(SL) - -default: $(SLIBRARY) - -$(LIBDIR)/libPHOS.$(SL): $(OBJS) $(FOBJS) - -$(DICT): $(HDRS) - -depend: $(SRCS) - -TOCLEAN = $(OBJS) *Cint.cxx *Cint.h - -############################### General Macros ################################ - -include $(ALICE_ROOT)/conf/GeneralMacros - -############################ Dependencies ##################################### - --include tgt_$(ALICE_TARGET)/Make-depend - -### Target check creates violation reports (.viol), which depend on -### stripped files (.ii), which in turn depend on preprocessed -### files (.i). Dependences are in conf/GeneralDef. - -CHECKS = $(patsubst %.cxx,check/%.viol,$(SRCS)) - -check: $(CHECKS) +# 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 $@ + $(LD) $(SOFLAGS) $(LDFLAGS) $^ $(OutPutOpt) $@ $(EXPLLINKLIBS) + @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) $^