New Makefile
authorkowal2 <kowal2@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 1 Nov 2000 16:07:34 +0000 (16:07 +0000)
committerkowal2 <kowal2@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 1 Nov 2000 16:07:34 +0000 (16:07 +0000)
CONTAINERS/Makefile [new file with mode: 0644]

diff --git a/CONTAINERS/Makefile b/CONTAINERS/Makefile
new file mode 100644 (file)
index 0000000..3cb743e
--- /dev/null
@@ -0,0 +1,70 @@
+# Include machine specific definitions
+
+include $(ALICE_ROOT)/conf/GeneralDef
+include $(ALICE_ROOT)/conf/MachineDef.$(ALICE_TARGET)
+
+PACKAGE = CONTAINERS
+
+# C++ sources 
+
+SRCS          =  AliMemArray.cxx AliClassInfo.cxx  AliDataType.cxx\
+                AliObjectArray.cxx    TArrayOfArray.cxx  AliArrayBranch.cxx\
+               AliSegmentID.cxx  AliSegmentArray.cxx \
+               AliDigits.cxx AliArrayI.cxx AliArrayS.cxx
+# C++ Headers
+
+HDRS          = $(SRCS:.cxx=.h) CONTAINERSLinkDef.h
+
+# Library dictionary
+
+DICT          = CONTAINERSCint.cxx
+DICTH         = $(DICT:.cxx=.h)
+DICTO         = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT))
+
+# FORTRAN Objectrs
+
+FOBJS         = $(FSRCS:.f=.o)
+# C Objects
+
+COBJS         = $(CSRCS:.c=.o)
+
+# C++ Objects
+
+OBJS          = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO)
+
+# C++ compilation flags
+
+CXXFLAGS      = $(CXXOPTS) -g -I$(ALICE_ROOT)/CONTAINERS  -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include -I$(ALICE_ROOT)/TPC 
+#CXXFLAGS      = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/
+# FORTRAN compilation flags
+
+FFLAGS      = $(FOPT)
+##### TARGETS #######
+# Target
+
+SLIBRARY       = $(LIBDIR)/libCONTAINERS.$(SL)
+
+default:       $(SLIBRARY)
+
+$(LIBDIR)/libCONTAINERS.$(SL):  $(OBJS)
+
+$(DICT):               $(HDRS)
+
+depend:                        $(SRCS)
+
+TOCLEAN                        = $(OBJS) *Cint.h *Cint.cxx
+
+CHECKS        = $(patsubst %.cxx,check/%.viol,$(SRCS))
+
+############################### General Macros ################################
+
+include $(ALICE_ROOT)/conf/GeneralMacros
+
+############################ Dependencies #####################################
+
+-include tgt_$(ALICE_TARGET)/Make-depend 
+
+