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 | include ../Makefile.conf.$(OSTYPE)
|
---|
18 | include ../Makefile.conf.general
|
---|
19 |
|
---|
20 | # @endcode
|
---|
21 |
|
---|
22 | # @code
|
---|
23 |
|
---|
24 | LIB = mgui.a
|
---|
25 |
|
---|
26 | #
|
---|
27 | # connect the include files defined in the config.mk file
|
---|
28 | #
|
---|
29 | INCLUDES = -I. -I../mbase -I../mraw -I../mdatacheck -I../meventdisp -I../manalysis
|
---|
30 |
|
---|
31 | #
|
---|
32 | # ----->>> root libraries
|
---|
33 | #
|
---|
34 |
|
---|
35 | ROOTLIBS = `root-config --libs`
|
---|
36 | ROOTGLIBS = `root-config --glibs`
|
---|
37 | ROOTCFLAGS = `root-config --cflags`
|
---|
38 |
|
---|
39 | #
|
---|
40 | # compiler flags
|
---|
41 | #
|
---|
42 |
|
---|
43 | CXXFLAGS = $(ROOTCFLAGS) $(INCLUDES) $(OPTIM) $(DEBUG)
|
---|
44 | CFLAGS = $(CXXFLAGS)
|
---|
45 | FFLAGS = $(CXXFLAGS)
|
---|
46 |
|
---|
47 | #------------------------------------------------------------------------------
|
---|
48 |
|
---|
49 | #.SILENT:
|
---|
50 |
|
---|
51 | .SUFFIXES: .c .cc .cxx .h .hxx .o
|
---|
52 |
|
---|
53 |
|
---|
54 | SRCFILES = MGMarsMain.cc \
|
---|
55 | MGEventDispMain.cc \
|
---|
56 | MGDataCheckMain.cc \
|
---|
57 | MGMonteCarloMain.cc \
|
---|
58 | MGPrototyp.cc \
|
---|
59 | MHexagon.cc \
|
---|
60 | MCamGeom.cc \
|
---|
61 | MCamNeighbor.cc \
|
---|
62 | MCamDisplay.cc
|
---|
63 |
|
---|
64 |
|
---|
65 | SRCS = $(SRCFILES)
|
---|
66 | HEADERS = $(SRCFILES:.cc=.h)
|
---|
67 | OBJS = $(SRCFILES:.cc=.o)
|
---|
68 |
|
---|
69 | ############################################################
|
---|
70 |
|
---|
71 | all: $(LIB)
|
---|
72 |
|
---|
73 | depend:
|
---|
74 | @makedepend $(SRCS) $(INCLUDES) $(ROOTCFLAGS) \
|
---|
75 | -f../Makefile.depend 2> kk.kk ; cat kk.kk
|
---|
76 |
|
---|
77 | $(LIB): $(OBJS) GuiCint.o
|
---|
78 | @echo " - Building Library $(LIB) ... "
|
---|
79 | $(AR) $(LIB) *.o
|
---|
80 |
|
---|
81 | GuiCint.cc: $(HEADERS)
|
---|
82 | @echo
|
---|
83 | @echo " - Generating dictionary GuiCint.cc ..."
|
---|
84 |
|
---|
85 | $(ROOTSYS)/bin/rootcint -f GuiCint.cc \
|
---|
86 | -c $(INCLUDES) $(HEADERS) GuiIncl.h GuiLinkDef.h
|
---|
87 |
|
---|
88 | .cxx.o:
|
---|
89 | @echo " - Compiling " $<
|
---|
90 | $(CXX) $(CXXFLAGS) -c $< -o $@
|
---|
91 |
|
---|
92 | .cc.o:
|
---|
93 | @echo " - Compiling " $<
|
---|
94 | $(CXX) $(CXXFLAGS) -c $< -o $@
|
---|
95 |
|
---|
96 | .c.o:
|
---|
97 | @echo " - Compiling " $<
|
---|
98 | $(CC) $(CFLAGS) -c $< -o $@
|
---|
99 |
|
---|
100 | #
|
---|
101 | # The cleaning facility
|
---|
102 | #
|
---|
103 |
|
---|
104 | rmlib:
|
---|
105 | @echo "Removing libraries..."
|
---|
106 | @rm -f lib*.a
|
---|
107 |
|
---|
108 | rmcint:
|
---|
109 | @echo "Removing cint-stuff..."
|
---|
110 | @rm -f GuiCint.*
|
---|
111 |
|
---|
112 | rmobjs:
|
---|
113 | @echo "Removing object files..."
|
---|
114 | @rm -f *.o
|
---|
115 |
|
---|
116 | rmbin:
|
---|
117 | @echo "Removing binary files..."
|
---|
118 | @rm -f core
|
---|
119 |
|
---|
120 |
|
---|
121 | clean: rmlib rmcint rmobjs rmbin
|
---|
122 |
|
---|
123 | mrproper: clean
|
---|
124 | @echo "Removing *~ kk.kk html/..."
|
---|
125 | @rm -f *~ kk.kk
|
---|
126 |
|
---|
127 | cflags:
|
---|
128 | @echo $(INCLUDES) $(CXXFLAGS)
|
---|
129 |
|
---|
130 | # @endcode
|
---|
131 |
|
---|