]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/misc/Makefile
New version of SPD raw-data reconstruction. The format now correponds to the actual...
[u/mrichter/AliRoot.git] / HLT / misc / Makefile
index 6f2cf0cbdb8ee262fe917c9c88c6f410241f0e2d..faef680692a65bf3f6b0aa9f30138cbc4ccf292b 100644 (file)
@@ -1,89 +1,27 @@
 #$Id$
-###########################
-# Makefile for HLT code.  #
-#                         #
-# Author: Anders Vestbo   #                    
-# changes by C. Loizides  #
-###########################
+################################
+# Makefile for HLT Misc code.  #
+#                              #
+# Author: Anders Vestbo        #                    
+#         Constantin Loizides  #
+################################
 
-ifndef TOPDIR
-TOPDIR = `pwd`/..
-endif
-
-include $(TOPDIR)/Makefile.conf
-
-DEFSTR = -Dno_root
-OBJDIR = lib_alone
-INCLUDES = -I$(TOPDIR)/hough -I$(TOPDIR)/src -I$(TOPDIR)/comp -I$(TOPDIR)/misc
-
-ifeq ($(USEPACKAGE),ROOT) 
-INCLUDES = -I$(ROOTSYS)/include -I$(TOPDIR)/hough -I$(TOPDIR)/src -I$(TOPDIR)/comp
-DEFSTR = -Duse_root
-OBJDIR = lib_ROOT
-endif
-
-ifeq ($(USEPACKAGE),ALIROOT)
-INCLUDES = -I$(ROOTSYS)/include -I$(TOPDIR)/hough -I$(TOPDIR)/src -I$(TOPDIR)/comp -I$(ALICE_ROOT)/include/ -I$(ALICE_ROOT)/TPC -I$(ALICE_ROOT)/CONTAINERS -I$(ALICE_ROOT)/STEER
-DEFSTR = -Duse_aliroot
-OBJDIR = lib
-endif
-
-ifdef DO_MC
-DEFSTR += -Ddo_mc
-endif
-
-ifndef NOLOGGING
-DEFSTR += -Duse_logging
-endif
+MODNAME = AliL3Misc
 
-DEFSTR += $(EXTRADEF)
-
-ifdef MLUCDIR
-INCLUDES += -I$(MLUCDIR)/include
-else
-INCLUDES += -I/prog/alice/level3/kip/MLUC/include
+ifndef ALIHLT_TOPDIR
+ALIHLT_TOPDIR = $(shell pwd)/..
 endif
 
-SRCS   = AliTransBit.cxx AliL3AltroMemHandler.cxx AliL3DataHandler.cxx AliL3VHDLClusterFinder.cxx \
-          AliL3FFloat.cxx
-
-DICT  = AliL3MiscCint-$(USEPACKAGE).cxx
-DICTH = AliL3MiscCint-$(USEPACKAGE).h
-DICTO = $(OBJDIR)/AliL3MiscCint-$(USEPACKAGE).o
+include $(ALIHLT_TOPDIR)/Makefile.conf
 
-HDRS = $(SRCS:.cxx=.h) AliL3MiscLinkDef.h
-OBJS = $(patsubst %.cxx,$(OBJDIR)/%.o,$(SRCS)) $(DICTO)
+SRCS   = AliL3TransBit.cxx AliL3AltroMemHandler.cxx \
+          AliL3VHDLClusterFinder.cxx AliL3TPCMapping.cxx \
+          AliL3FFloat.cxx AliL3Stopwatch.cxx AliL3DDLRawReader.cxx \
+          AliL3DDLRawReaderFile.cxx AliL3DDLTPCRawStream.cxx 
 
-ifeq ($(OBJDIR),lib_alone)
-HDRS = $(SRCS:.cxx=.h) 
-OBJS = $(patsubst %.cxx,$(OBJDIR)/%.o,$(SRCS))
+ifneq ($(ARCH),macosx)
+## for macosx put into src as symbolic link
+SRCS   += AliL3DDLDataFileHandler.cxx AliL3DataHandler.cxx 
 endif
 
-
-LEVELSO = $(LIBDIR)/libAliL3Misc.so
-
-all : $(OBJDIR) $(LIBDIR) $(LEVELSO) 
-
-$(LEVELSO) : $(OBJS)
-       $(LD) $(SOFLAGS) $(LDFLAGS) $^ -o $@
-
-$(DICT) : $(HDRS)
-       @echo "Generating dictionary..."
-       @rootcint -f $(DICT) -c $(INCLUDES) $(HDRS)
-
-$(OBJDIR)/%.o : %.cxx 
-       $(CXX) $(CXXFLAGS) $(DEFSTR) -c $(INCLUDES) -o $@ $<
-
-$(OBJDIR) : 
-       test ! -e $(OBJDIR) && mkdir -p $(OBJDIR)
-
-$(LIBDIR) :
-       test ! -e $(LIBDIR) && mkdir -p $(LIBDIR)
-
-clean :
-       rm -f $(OBJDIR)/*.o
-       rm -f $(LIBDIR)/libAliL3Misc.so
-       rm -f $(DICT) $(DICTH) 
-
-so :
-       rm -f $(LIBDIR)/libAliL3Misc.so
+include $(ALIHLT_TOPDIR)/Makefile.rules