source: trunk/MagicSoft/Mars/mimage/Makefile@ 3879

Last change on this file since 3879 was 3821, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.3 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 = Image
15
16#
17# Library name to creatre
18#
19LIB = mimage.a
20
21#
22# connect the include files defined in the config.mk file
23#
24INCLUDES = -I. -I../mbase -I../mhbase -I../mgeom -I../manalysis \
25 -I../mgui -I../mmc -I../mpointing -I../mpedestal
26
27#------------------------------------------------------------------------------
28
29.SUFFIXES: .c .cc .cxx .h .hxx .o
30
31SRCFILES = MImgCleanStd.cc \
32 MImgCleanTGB.cc \
33 MCameraSmooth.cc \
34 MHillas.cc \
35 MHillasSrc.cc \
36 MHillasExt.cc \
37 MHillasCalc.cc \
38 MHillasSrcCalc.cc \
39 MNewImagePar.cc \
40 MConcentration.cc \
41 MHHillas.cc \
42 MHHillasSrc.cc \
43 MHHillasExt.cc \
44 MHNewImagePar.cc \
45 MStereoPar.cc \
46 MStereoCalc.cc
47
48SRCS = $(SRCFILES)
49HEADERS = $(SRCFILES:.cc=.h)
50OBJS = $(SRCFILES:.cc=.o)
51
52############################################################
53
54all: $(LIB)
55
56include ../Makefile.rules
57
58#clean: rmcint rmobjs rmcore rmlib
59
60mrproper: clean rmbak
61
62# @endcode
Note: See TracBrowser for help on using the repository browser.