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

Last change on this file since 1942 was 1942, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.2 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../mhist -I../mgeom
25
26#------------------------------------------------------------------------------
27
28.SUFFIXES: .c .cc .cxx .h .hxx .o
29
30SRCFILES = MImgCleanStd.cc \
31 MCameraSmooth.cc \
32 MHillas.cc \
33 MHillasSrc.cc \
34 MHillasExt.cc \
35 MHillasCalc.cc \
36 MHillasSrcCalc.cc \
37 MNewImagePar.cc \
38 MNewImageParCalc.cc \
39 MHHillas.cc \
40 MHHillasSrc.cc \
41 MHHillasExt.cc \
42 MHNewImagePar.cc
43
44SRCS = $(SRCFILES)
45HEADERS = $(SRCFILES:.cc=.h)
46OBJS = $(SRCFILES:.cc=.o)
47
48############################################################
49
50all: $(LIB)
51
52include ../Makefile.rules
53
54clean: rmcint rmobjs rmcore rmlib
55
56mrproper: clean rmbak
57
58# @endcode
Note: See TracBrowser for help on using the repository browser.