]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Split femto code into two libraries
authorakisiel <akisiel@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 27 Apr 2007 07:21:25 +0000 (07:21 +0000)
committerakisiel <akisiel@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 27 Apr 2007 07:21:25 +0000 (07:21 +0000)
PWG2/Makefile

index 5e59a3d522ef4fc35dd2e094013b8e9058ce834c..c36c3ab17a14cf4f3f52f2cb36e38fbfd875cd76 100644 (file)
@@ -2,7 +2,7 @@
 
 include $(ROOTSYS)/test/Makefile.arch
 
-default-target: libPWG2.so libPWG2ebye.so libPWG2flow.so libPWG2femtoscopy.so 
+default-target: libPWG2.so libPWG2ebye.so libPWG2flow.so libPWG2femtoscopy.so libPWG2femtoscopyUser.so
 
 ALICEINC      = -I.
 
@@ -160,3 +160,26 @@ G__PWG2femtoscopy.cxx G__PWG2femtoscopy.h: $(HDRS_PWG2femtoscopy) $(DHDR_PWG2fem
        @echo "Generating dictionary ..."
        rootcint -f $@ -c $(ALICEINC) $^
 
+## libPWG2femtoscopyUser part
+include libPWG2femtoscopyUser.pkg
+
+DHDR_PWG2femtoscopyUser := $(DHDR)
+HDRS_PWG2femtoscopyUser := $(HDRS)
+SRCS_PWG2femtoscopyUser := $(SRCS) G__PWG2femtoscopyUser.cxx
+OBJS_PWG2femtoscopyUser := $(SRCS_PWG2femtoscopyUser:.cxx=.o)
+
+libPWG2femtoscopyUser.so: $(OBJS_PWG2femtoscopyUser)
+       @echo "Linking" $@ ...
+       @/bin/rm -f $@
+ifeq ($(PLATFORM),macosx)
+       @$(LD) -bundle -undefined $(UNDEFOPT) $(LDFLAGS) $^ -o $@
+else
+       @$(LD) $(SOFLAGS) $(LDFLAGS) $^ -o $@
+endif
+       @chmod a+x $@
+       @echo "done"
+
+G__PWG2femtoscopyUser.cxx G__PWG2femtoscopyUser.h: $(HDRS_PWG2femtoscopyUser) $(DHDR_PWG2femtoscopyUser)
+       @echo "Generating dictionary ..."
+       rootcint -f $@ -c $(ALICEINC) $^
+