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 | #
|
---|
17 | include ../../../Makefile.conf.$(OSTYPE)
|
---|
18 | include ../../../Makefile.conf.general
|
---|
19 |
|
---|
20 | PROGRAMS = makeHillas psffit
|
---|
21 | SOLIB = ../../../libmars.so
|
---|
22 |
|
---|
23 | #------------------------------------------------------------------------------
|
---|
24 |
|
---|
25 | INCLUDES = -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 |
|
---|
45 | all: $(PROGRAMS)
|
---|
46 |
|
---|
47 | include ../../../Makefile.rules
|
---|
48 |
|
---|
49 | $(PROGRAMS): $(PROGRAMS:=.o)
|
---|
50 | @echo " Linking $@ ..."
|
---|
51 | $(CXX) $(CXXFLAGS) $(ROOTGLIBS) $(SOLIB) $@.o $(MARS_LIB) -o $@
|
---|
52 |
|
---|
53 | clean: rmobjs rmcore
|
---|
54 | mrproper: clean rmbak
|
---|
55 | rm -f $(PROGRAMS)
|
---|
56 |
|
---|
57 |
|
---|
58 | # @endcode
|
---|
Note:
See
TracBrowser
for help on using the repository browser.