source: trunk/MagicSoft/Mars/mhist/Makefile@ 1211

Last change on this file since 1211 was 1211, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 1.4 KB
Line 
1##################################################################
2#
3# makefile
4#
5# for the MARS software
6#
7##################################################################
8include ../Makefile.conf.$(OSTYPE)
9include ../Makefile.conf.general
10
11#
12# Handling name of the Root Dictionary Files
13#
14CINT = Hist
15
16#
17# Library name to creatre
18#
19LIB = mhist.a
20
21#
22# connect the include files defined in the config.mk file
23#
24INCLUDES = -I. -I../mbase -I../mraw -I../manalysis -I../mmc
25
26#------------------------------------------------------------------------------
27
28.SUFFIXES: .c .cc .cxx .h .hxx .o
29
30SRCFILES = MFillH.cc \
31 MBinning.cc \
32 MH.cc \
33 MHFadcPix.cc \
34 MHFadcCam.cc \
35 MHHillas.cc \
36 MHHillasSrc.cc \
37 MHStarMap.cc \
38 MHEnergyTime.cc \
39 MHEnergyTheta.cc \
40 MHMcCollectionArea.cc \
41 MHAlphaEnergyTime.cc \
42 MHAlphaEnergyTheta.cc \
43 MHEffOnTimeTime.cc \
44 MHEffOnTimeTheta.cc \
45 MHTimeDiffTime.cc \
46 MHTimeDiffTheta.cc \
47 MHMcEnergy.cc \
48 MHMcRate.cc
49
50SRCS = $(SRCFILES)
51HEADERS = $(SRCFILES:.cc=.h)
52OBJS = $(SRCFILES:.cc=.o)
53
54############################################################
55
56all: $(LIB)
57
58include ../Makefile.rules
59
60clean: rmcint rmobjs rmcore rmlib
61
62mrproper: clean rmbak
63
64# @endcode
Note: See TracBrowser for help on using the repository browser.