source: trunk/MagicSoft/Mars/Makefile@ 4071

Last change on this file since 4071 was 4034, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 3.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#
17include Makefile.conf.$(OSTYPE)
18include Makefile.conf.general
19
20#
21
22#PROGRAMS = readraw merpp mars test mona status
23PROGRAMS = readdaq readraw merpp star status mars mona
24SOLIB = libmars.so
25CINT = M
26
27#
28# connect the include files defined in the config.mk file
29#
30# WARNING: the result (whether the linkage works or not) depends on the
31# order of the libraries. It seems, that the most base library
32# must be the last one
33#
34
35#
36# ----->>> mars libraries
37#
38SUBDIRS = mbase \
39 mastro \
40 mmain \
41 mfbase \
42 mfilter \
43 mdata \
44 mhbase \
45 mhvstime \
46 mhist \
47 manalysis \
48 msignal \
49 mbadpixels \
50 mcalib \
51 mpedestal \
52 mfileio \
53 mreflector \
54 mgeom \
55 msql \
56 mimage \
57 mmontecarlo \
58 mmc \
59 mraw \
60 mcamera \
61 mpointing \
62 mreport \
63 mgui \
64 mranforest \
65 mhistmc \
66 mjobs \
67 mtools
68
69#LIBRARIES = $(SUBDIRS:%=lib/lib%.a)
70LIBRARIES = $(SUBDIRS:=.a)
71MRPROPERS = $(SUBDIRS:=.mrproper)
72CLEANERS = $(SUBDIRS:=.clean)
73LIBS = $(SOLIB)
74
75#------------------------------------------------------------------------------
76.SUFFIXES: .c .cc .h .o
77
78SRCFILES =
79
80############################################################
81all: $(SOLIB) $(PROGRAMS)
82 @echo " Done. "
83 @echo " "
84
85static: LIBS=$(SUBDIRS:=/*.o) $(OBJS)
86#static: rmlib $(LIBRARIES) $(PROGRAMS)
87static: $(LIBRARIES) $(PROGRAMS)
88 @echo " Done. "
89 @echo " "
90
91include Makefile.rules
92
93#
94# Use $(CXX) -v ... for a more verbose output
95#
96# ROOTGLIBS must be there - why? How can I link the libraries?
97$(SOLIB): $(LIBRARIES) $(OBJS) $(HEADERS)
98 @echo " Linking shared object $(SOLIB) ..."
99 $(CXX) $(CXXFLAGS) $(SOFLAG) $(OBJS) $(SUBDIRS:=/*.o) $(ROOTGLIBS) -o $@
100
101# This is a special workaround to create the shared object (bundle, plugin)
102# for root and the dynlib (to be linked with the executable) on Mac OSX
103ifneq ($(OSTYPE),darwin)
104$(PROGRAMS): $(SOLIB) $(PROGRAMS:=.o)
105 @echo " Linking $@ ..."
106 $(CXX) $(CXXFLAGS) $(ROOTGLIBS) $(SOLIB) $@.o $(MARS_LIB) -o $@
107else
108$(DYLIB): $(LIBRARIES) $(OBJS) $(HEADERS)
109 @echo " Linking dylib $(DYLIB) ..."
110 $(CXX) $(CXXFLAGS) $(DYFLAG) $(OBJS) $(SUBDIRS:=/*.o) $(ROOTGLIBS) -o $@
111
112$(PROGRAMS): $(DYLIB) $(PROGRAMS:=.o)
113 @echo " Linking mac executable $@ ..."
114 $(CXX) $(CXXFLAGS) $(ROOTGLIBS) $(DYLIB) $@.o $(MARS_LIB) -o $@
115endif
116
117dox: $(SOLIB)
118 @echo
119 @echo " Creating html documentation and logfile dohtml.log..."
120 rm -f dohtml.log
121 root -b -q dohtml.C 2>&1 >> dohtml.log | tee -a dohtml.log
122 @echo " done."
123 @echo
124
125#clean: rmcint rmobjs rmdep rmcore rmlib
126
127mrproper: $(MRPROPERS) rmbin rmbak rmbakmac rmhtml clean
128 @echo " Done."
129 @echo " "
130
131tar: mrproper
132 @echo "Making tar-file"
133 root -b -q -l -n tar.C
134# @tar cvf ../mars.tar --exclude=Root .rootrc *
135# @gzip -9 ../mars.tar
136
137#Makefile.depend:
138# (! find ./ Makefile.depend -maxdepth 1 -empty 2> /dev/null && \
139# echo " Generating dependancies into Makefile.depend" && \
140# makedepend -- $(INCLUDES) -- $(PROGRAMS:=.cc) $(SRCS) $(SUBDIRS:=/*.cc) -w1024 -f- 2> /dev/null | grep -v Cint | grep -v "/usr/" > Makefile.depend && \
141# echo " ") || find -maxdepth 0 -true > /dev/null
142#
143#depend: Makefile.depend
144
145# @endcode
Note: See TracBrowser for help on using the repository browser.