source: trunk/Mars/Makefile@ 15179

Last change on this file since 15179 was 15179, checked in by tbretz, 11 years ago
Added nova-path to get nova wrapper compiled.
File size: 4.5 KB
Line 
1##################################################################
2#
3# makefile
4#
5# for the MARS software
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
18include Makefile.conf.general
19include Makefile.conf.$(OSTYPE)
20
21#
22#PROGRAMS = readraw merpp mars test mona status
23PROGRAMS := readdaq readraw readcorsika ceres merpp callisto star ganymed sponde showlog showplot mars mars-config
24SOLIB := libmars.so
25
26CINT = M
27
28#
29# connect the include files defined in the config.mk file
30#
31# WARNING: the result (whether the linkage works or not) depends on the
32# order of the libraries. It seems, that the most base library
33# must be the last one
34#
35
36#
37# ----->>> mars libraries
38#
39SUBDIRS := mbase \
40 mastro \
41 mmain \
42 mcorsika \
43 mdrs \
44 mfbase \
45 mfilter \
46 mdata \
47 mhbase \
48 mhvstime \
49 mhist \
50 manalysis \
51 mextralgo \
52 msignal \
53 mbadpixels \
54 mhcalib \
55 mhflux \
56 mcalib \
57 mpedestal \
58 mfileio \
59 mgeom \
60 melectronics \
61 msim \
62 msimreflector \
63 msimcamera \
64 msql \
65 mimage \
66 mhft \
67 mmc \
68 mraw \
69 mcamera \
70 mtrigger \
71 mpointing \
72 mreport \
73 mgui \
74 mranforest \
75 mjobs \
76 mjoptim \
77 mjtrain \
78 mmovie \
79 mtools \
80 mmuon
81
82LIBNOVA_PATH := `which libnovaconfig`
83
84ifeq ($(shell basename "$(LIBNOVA_PATH)X"), libnovaconfigX)
85SUBDIRS += nova
86endif
87
88#LIBRARIES = $(SUBDIRS:%=lib/lib%.a)
89LIBRARIES := $(SUBDIRS:=.a)
90CONDOR := $(SUBDIRS:=.condor)
91MRPROPERS := $(SUBDIRS:=.mrproper)
92CLEANERS := $(SUBDIRS:=.clean)
93LIBS := $(SOLIB)
94
95#------------------------------------------------------------------------------
96.SUFFIXES: .c .cc .h .o .cxx .hxx .gch
97
98SRCFILES =
99
100############################################################
101RNDMNAME:=$(shell mktemp)
102
103all: $(SOLIB) $(PROGRAMS)
104 @echo " Done. "
105 @echo " "
106
107static: LIBS=$(SUBDIRS:=/*.o) $(OBJS)
108#static: rmlib $(LIBRARIES) $(PROGRAMS)
109static: $(LIBRARIES) $(PROGRAMS)
110 @echo " Done. "
111 @echo " "
112
113include Makefile.rules
114
115#
116# Use $(CXX) -v ... for a more verbose output
117#
118# ROOTGLIBS must be there - why? How can I link the libraries?
119$(SOLIB): $(LIBRARIES) $(OBJS) $(HEADERS)
120 @echo " Linking shared object $@ ..."
121 $(CXX) $(CXXFLAGS) $(SOFLAG) $(OBJS) $(SUBDIRS:=/*.o) $(ROOTGLIBS) $(LIBNOVA) -o ${RNDMNAME}
122 mv ${RNDMNAME} $@
123 chmod go+r $@
124
125# This is a special workaround to create the shared object (bundle, plugin)
126# for root and the dynlib (to be linked with the executable) on Mac OSX
127ifneq ($(OSTYPE),darwin)
128$(PROGRAMS): $(PROGRAMS:=.o) $(SOLIB)
129 @echo " Linking $@ ..."
130 $(CXX) $(CXXFLAGS) $@.o $(MARS_LIB) $(SOLIB) $(ROOTGLIBS) -o $@
131
132# Use this to link the programs statically - for gprof
133#$(PROGRAMS): $(OBJS) $(HEADERS) $(PROGRAMS:=.o)
134# @echo " Linking $@ ..."
135# $(CXX) $(CXXFLAGS) $(ROOTGLIBS) $(OBJS) $(SUBDIRS:=/*.o) $@.o $(MARS_LIB) -o $@
136else
137$(DYLIB): $(LIBRARIES) $(OBJS) $(HEADERS)
138 @echo " Linking dylib $(DYLIB) ..."
139 $(CXX) $(CXXFLAGS) $(DYFLAG) $(OBJS) $(SUBDIRS:=/*.o) $(ROOTGLIBS) -o $@
140
141$(PROGRAMS): $(PROGRAMS:=.o) $(DYLIB)
142 @echo " Linking mac executable $@ ..."
143 $(CXX) $(CXXFLAGS) $(ROOTGLIBS) $(DYLIB) $@.o $(MARS_LIB) -o $@
144endif
145
146rmcondor:
147 rm -f .makecondor.log
148
149condor: rmcondor $(CONDOR)
150 echo Waiting for jobs to finish...
151 condor_wait .makecondor.log
152 rm .makecondor.log
153 make -j2 $(PROGRAMS)
154# find -name "*/.makecondor.*"
155# find -maxdepth 2 -name ".makecondor.*" -exec echo {}\\\; cat {}\\\; echo {}\\\; \;
156
157dox: $(SOLIB)
158 @echo
159 @echo " Creating html documentation and logfile dohtml.log..."
160 rm -f dohtml.log
161 root -b -q dohtml.C 2>&1 >> dohtml.log | tee -a dohtml.log
162 @echo " done."
163 @echo
164
165#clean: rmcint rmobjs rmdep rmcore rmlib
166
167mrproper: $(MRPROPERS) rmbin rmbak rmbakmac rmhtml clean
168 @echo " Done."
169 @echo " "
170
171tar: mrproper
172 @echo "Making tar-file"
173 root -b -q -l -n tar.C
174# @tar cvf ../mars.tar --exclude=Root .rootrc *
175# @gzip -9 ../mars.tar
176
177#Makefile.depend:
178# (! find ./ Makefile.depend -maxdepth 1 -empty 2> /dev/null && \
179# echo " Generating dependancies into Makefile.depend" && \
180# makedepend -- $(INCLUDES) -- $(PROGRAMS:=.cc) $(SRCS) $(SUBDIRS:=/*.cc) -w1024 -f- 2> /dev/null | grep -v Cint | grep -v "/usr/" > Makefile.depend && \
181# echo " ") || find -maxdepth 0 -true > /dev/null
182#
183#depend: Makefile.depend
184
185# @endcode
Note: See TracBrowser for help on using the repository browser.