]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Changes to take into account the recent modifications in libESD.pkg
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 26 Feb 2007 16:17:39 +0000 (16:17 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 26 Feb 2007 16:17:39 +0000 (16:17 +0000)
STEER/Makefile

index 8945fb97a73b3a2df3ddd4bd018c1367c2a425c1..c617cc4c8874256f6fcd13153d1aac9973b5a98f 100644 (file)
@@ -3,6 +3,10 @@ PACKAGE = invalid-only-for-proof
 include $(ROOTSYS)/test/Makefile.arch
 include lib$(PACKAGE).pkg
 
+ifndef PACKCXXFLAGS
+PACKCXXFLAGS = $(CXXFLAGS)
+endif
+
 SRCS         += G__$(PACKAGE).cxx
 OBJS          = $(SRCS:.cxx=.o)
 
@@ -18,12 +22,12 @@ endif
        @echo "done"
 
 %.o:    %.cxx %.h
-       $(CXX) $(CXXFLAGS) -c $< -o $@
+       $(CXX) $(PACKCXXFLAGS) -c $< -o $@
 
 clean:
        @rm -f $(OBJS) *.so G__$(PACKAGE).*
 
 G__$(PACKAGE).cxx G__$(PACKAGE).h: $(HDRS) $(DHDR)
        @echo "Generating dictionary ..."
-       rootcint -f $@ -c $(ALICEINC) $^
+       rootcint -f $@ -c $(CINTFLAGS) $(ALICEINC) $^