source: trunk/MagicSoft/Mars/Makefile@ 2771

Last change on this file since 2771 was 2739, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 3.3 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 mmain \
40 mfilter \
41 mdata \
42 mhbase \
43 mhist \
44 manalysis \
45 mcalib \
46 mfileio \
47 mreflector \
48 mgeom \
49 mimage \
50 mmontecarlo \
51 mmc \
52 mraw \
53 mcamera \
54 mpointing \
55 mreport \
56 mgui \
57 mranforest \
58 mhistmc \
59 mtools
60
61# monline \
62
63#LIBRARIES = $(SUBDIRS:%=lib/lib%.a)
64LIBRARIES = $(SUBDIRS:=.a)
65MRPROPERS = $(SUBDIRS:=.mrproper)
66CLEANERS = $(SUBDIRS:=.clean)
67LIBS = $(SOLIB)
68
69#------------------------------------------------------------------------------
70
71.SUFFIXES: .c .cc .h .o
72
73SRCFILES =
74
75SRCS = $(SRCFILES)
76HEADERS = $(SRCFILES:.cc=.h)
77OBJS = $(SRCFILES:.cc=.o) MCint.o
78
79############################################################
80all: rmlib $(SOLIB) $(PROGRAMS)
81 @echo " Done. "
82 @echo " "
83
84static: LIBS=$(SUBDIRS:=/*.o) $(OBJS)
85static: rmlib $(LIBRARIES) $(PROGRAMS)
86 @echo " Done. "
87 @echo " "
88
89include Makefile.rules
90include Makefile.depend
91
92#
93# Use $(CXX) -v ... for a more verbose output
94#
95# ROOTGLIBS must be there - why? How can I link the libraries?
96$(SOLIB): $(LIBRARIES) $(OBJS) $(HEADERS)
97 @echo " Linking $(SOLIB) ..."
98 $(CXX) $(CXXFLAGS) $(DYNLIB) $(OBJS) $(SUBDIRS:=/*.o) $(ROOTGLIBS) -o $@
99# $(CXX) $(CXXFLAGS) $(DYNLIB) $(OBJS) -Wl,--export-dynamic -Llib $(LIBRARIES:%.a=-l%) -o $@
100
101$(PROGRAMS): $(LIBS) $(PROGRAMS:=.o)
102 @echo " Linking $@ ..."
103 $(CXX) $(CXXFLAGS) $(ROOTGLIBS) $(LIBS) $@.o $(MARS_LIB) -o $@
104
105$(LIBRARIES):
106 @echo " Creating lib$@:"
107 (cd $*; make; cd ..; mv $*/$@ lib/lib$@)
108
109$(MRPROPERS):
110 @echo " Doing Mr.Proper in $(@:.mrproper=)"
111 (cd $(@:.mrproper=); (make mrproper > /dev/null); cd ..;)
112
113$(CLEANERS):
114 @echo "Cleaning $(@:.clean=):"
115 (cd $(@:.clean=); make clean; cd ..;)
116
117dox: $(SOLIB)
118 @echo " Creating html documentation:"
119 root -b -q dohtml.C
120
121clean: rmmake rmcint rmobjs rmcore rmlib
122
123mrproper: $(MRPROPERS) rmmake rmbin rmbak rmbakmac rmhtml clean
124 @echo " Done."
125 @echo " "
126
127tar: mrproper
128 @echo "Making tar-file"
129 @root -b -q -l -n tar.C
130# @tar cvf ../mars.tar --exclude=Root .rootrc *
131# @gzip -9 ../mars.tar
132
133Makefile.depend:
134 (! find ./ Makefile.depend -maxdepth 1 -empty 2> /dev/null && \
135 echo " Generating dependancies into Makefile.depend" && \
136 makedepend -- $(INCLUDES) -- $(PROGRAMS:=.cc) $(SRCS) $(SUBDIRS:=/*.cc) -w1024 -f- 2> /dev/null | grep -v Cint | grep -v "/usr/" > Makefile.depend && \
137 echo " ") || find -maxdepth 0 -true > /dev/null
138
139depend: Makefile.depend
140
141# @endcode
Note: See TracBrowser for help on using the repository browser.