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

Last change on this file since 5379 was 5281, 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 psffit falseSource srcPos optimizeCuts controlPlot
21SOLIB = $(MARSSYS)/libmars.so
22
23#------------------------------------------------------------------------------
24
25INCLUDES = -I. \
26 -I../library \
27 -I../../../mbase \
28 -I../../../mfbase \
29 -I../../../mjobs \
30 -I../../../mpedestal \
31 -I../../../mbadpixels \
32 -I../../../mfileio \
33 -I../../../mraw \
34 -I../../../manalysis \
35 -I../../../mgui \
36 -I../../../mgeom \
37 -I../../../msignal \
38 -I../../../mcalib \
39 -I../../../mfilter \
40 -I../../../mhbase \
41 -I../../../mhcalib \
42 -I../../../mimage \
43 -I../../../mpointing \
44 -I../../../mcamera \
45 -I../../../mhist \
46 -I../../../mastro \
47 -I../../../mreport \
48 -I../../../mtemp
49
50all: $(PROGRAMS)
51
52include ../../../Makefile.rules
53
54$(PROGRAMS): $(PROGRAMS:=.o)
55 @echo " Linking $@ ..."
56 $(CXX) $(CXXFLAGS) $(ROOTGLIBS) $(SOLIB) $@.o $(MARS_LIB) -o $@
57
58clean: rmobjs rmcore
59mrproper: clean rmbak
60 rm -f $(PROGRAMS)
61
62
63# @endcode
Note: See TracBrowser for help on using the repository browser.