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

Last change on this file since 4074 was 4050, checked in by rico, 20 years ago
*** empty log message ***
File size: 1.2 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
21SOLIB = $(MARSSYS)/libmars.so
22
23#------------------------------------------------------------------------------
24
25INCLUDES = -I. \
26 -I../library \
27 -I../../../mbase \
28 -I../../../mjobs \
29 -I../../../mpedestal \
30 -I../../../mbadpixels \
31 -I../../../mfileio \
32 -I../../../mraw \
33 -I../../../manalysis \
34 -I../../../mgui \
35 -I../../../mgeom \
36 -I../../../msignal \
37 -I../../../mcalib \
38 -I../../../mfilter \
39 -I../../../mhbase \
40 -I../../../mimage \
41 -I../../../mpointing \
42 -I../../../mcamera \
43 -I../../../mastro
44
45all: $(PROGRAMS)
46
47include ../../../Makefile.rules
48
49$(PROGRAMS): $(PROGRAMS:=.o)
50 @echo " Linking $@ ..."
51 $(CXX) $(CXXFLAGS) $(ROOTGLIBS) $(SOLIB) $@.o $(MARS_LIB) -o $@
52
53clean: rmobjs rmcore
54mrproper: clean rmbak
55 rm -f $(PROGRAMS)
56
57
58# @endcode
Note: See TracBrowser for help on using the repository browser.