]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - THijing/Makefile
Merging the VirtualMC branch to the main development branch (HEAD)
[u/mrichter/AliRoot.git] / THijing / Makefile
diff --git a/THijing/Makefile b/THijing/Makefile
deleted file mode 100644 (file)
index 53f0c09..0000000
+++ /dev/null
@@ -1,86 +0,0 @@
-############################### THijing Makefile ##############################
-
-# Include machine specific definitions
-
-include $(ALICE_ROOT)/conf/GeneralDef
-include $(ALICE_ROOT)/conf/MachineDef.$(ALICE_TARGET)
-
-PACKAGE = THijing
-
-# FORTRAN sources
-
-FSRCS       = 
-
-# C++ sources
-
-SRCS          = THijing.cxx 
-
-# C++ Headers
-
-HDRS          = $(SRCS:.cxx=.h) THijingLinkDef.h
-
-# Library dictionary
-
-DICT          = THijingCint.cxx
-DICTH         = $(DICT:.cxx=.h)
-DICTO         = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT))
-
-# Objects
-
-OBJS          = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(FOBJS) $(DICTO)
-
-# FORTRAN Objectrs
-
-FOBJS         = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(FSRCS))
-
-# C Objects
-
-COBJS         = $(patsubst %.c,tgt_$(ALICE_TARGET)/%.o,$(CSRCS))
-
-# C++ Objects
-
-OBJS          = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO)
-
-# C++ compilation flags
-
-CXXFLAGS      = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/
-# FORTRAN compilation flags
-
-FFLAGS      = $(FOPT)
-
-##### TARGETS #####
-# Target
-
-SLIBRARY       = $(LIBDIR)/libTHijing.$(SL)
-ALIBRARY       = $(LIBDIR)/libTHijing.a
-
-default:       $(SLIBRARY)
-
-$(LIBDIR)/libTHijing.$(SL):            $(OBJS)
-
-$(DICT):                               $(HDRS)
-
-depend:                        $(SRCS) $(FSRCS)
-
-HEADERS                = THijing.h
-
-TOCLEAN                = $(OBJS) *Cint.cxx *Cint.h
-
-CHECKS        = $(patsubst %.cxx,check/%.viol,$(SRCS))
-
-############################### General Macros ################################
-
-include $(ALICE_ROOT)/conf/GeneralMacros
-
-############################ Dependencies #####################################
-
--include tgt_$(ALICE_TARGET)/Make-depend 
-
-
-
-
-
-
-