source: trunk/MagicSoft/Mars/mtemp/mifae/programs/Makefile@ 6139

Last change on this file since 6139 was 5933, checked in by rico, 20 years ago
*** empty log message ***
File size: 1.4 KB
Line 
1##################################################################
2#
3# makefile
4#
5# for the MARS IFAE library
6#
7##################################################################
8# @maintitle
9
10# @code
11
12#
13# please change all system depend values in the
14# config.mk.${OSTYPE} file
15#
16#
17include ../../../Makefile.conf.$(OSTYPE)
18include ../../../Makefile.conf.general
19
20PROGRAMS = makeHillas controlPlot
21#psffit falseSource srcPos optimizeCuts controlPlot
22SOLIB = $(MARSSYS)/libmars.so
23
24#------------------------------------------------------------------------------
25
26INCLUDES = -I. \
27 -I../library \
28 -I../../../mbase \
29 -I../../../mfbase \
30 -I../../../mjobs \
31 -I../../../mpedestal \
32 -I../../../mbadpixels \
33 -I../../../mfileio \
34 -I../../../mraw \
35 -I../../../manalysis \
36 -I../../../mgui \
37 -I../../../mgeom \
38 -I../../../msignal \
39 -I../../../mcalib \
40 -I../../../mfilter \
41 -I../../../mhbase \
42 -I../../../mhcalib \
43 -I../../../mimage \
44 -I../../../mpointing \
45 -I../../../mcamera \
46 -I../../../mhist \
47 -I../../../mastro \
48 -I../../../mreport \
49 -I../../../mranforest \
50 -I../../../mtemp
51
52all: $(PROGRAMS)
53
54include ../../../Makefile.rules
55
56$(PROGRAMS): $(PROGRAMS:=.o)
57 @echo " Linking $@ ..."
58 $(CXX) $(CXXFLAGS) $(ROOTGLIBS) $(SOLIB) $@.o $(MARS_LIB) -o $@
59
60clean: rmobjs rmcore
61mrproper: clean rmbak
62 rm -f $(PROGRAMS)
63
64
65# @endcode
Note: See TracBrowser for help on using the repository browser.