Changeset 665 for trunk/MagicSoft/Mars/mgui
- Timestamp:
- 03/02/01 12:09:07 (24 years ago)
- Location:
- trunk/MagicSoft/Mars/mgui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mgui/MHexagon.h
r653 r665 11 11 12 12 #ifndef ROOT_TObject 13 #include "TObject.h"13 #include <TObject.h> 14 14 #endif 15 15 16 16 #ifndef ROOT_TAttLine 17 #include "TAttLine.h"17 #include <TAttLine.h> 18 18 #endif 19 19 20 20 #ifndef ROOT_TAttFill 21 #include "TAttFill.h"21 #include <TAttFill.h> 22 22 #endif 23 23 -
trunk/MagicSoft/Mars/mgui/Makefile
r654 r665 6 6 # 7 7 ################################################################## 8 # @maintitle9 10 # @code11 12 #13 # please change all system depend values in the14 # config.mk.${OSTYPE} file15 #16 #17 8 include ../Makefile.conf.$(OSTYPE) 18 9 include ../Makefile.conf.general 19 10 20 # @endcode 11 # 12 # Handling name of the Root Dictionary Files 13 # 14 CINT = Gui 21 15 22 # @code 23 16 # 17 # Library name to creatre 18 # 24 19 LIB = mgui.a 25 20 … … 27 22 # connect the include files defined in the config.mk file 28 23 # 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) 24 INCLUDES = -I. -I../mbase -I../manalysis -I../mdatacheck -I../meventdisp 46 25 47 26 #------------------------------------------------------------------------------ 48 27 49 #.SILENT:50 51 28 .SUFFIXES: .c .cc .cxx .h .hxx .o 52 29 53 54 SRCFILES = MGMarsMain.cc \ 30 SRCFILES = MCamDisplay.cc \ 31 MCamNeighbor.cc \ 32 MGDataCheckMain.cc \ 55 33 MGEventDispMain.cc \ 56 MG DataCheckMain.cc \34 MGMarsMain.cc \ 57 35 MGMonteCarloMain.cc \ 58 MGPrototyp.cc \ 59 MHexagon.cc \ 36 MGPrototyp.cc \ 60 37 MGeomCam.cc \ 61 38 MGeomPix.cc \ 62 MCamNeighbor.cc \ 63 MCamDisplay.cc 64 39 MHexagon.cc 65 40 66 41 SRCS = $(SRCFILES) … … 72 47 all: $(LIB) 73 48 74 depend: 75 @makedepend $(SRCS) $(INCLUDES) $(ROOTCFLAGS) \ 76 -f../Makefile.depend 2> kk.kk ; cat kk.kk 49 include ../Makefile.rules 77 50 78 $(LIB): $(OBJS) GuiCint.o 79 @echo " - Building Library $(LIB) ... " 80 $(AR) $(LIB) *.o 51 clean: rmlib rmcint rmobjs rmcore rmbin 81 52 82 GuiCint.cc: $(HEADERS) 83 @echo 84 @echo " - Generating dictionary GuiCint.cc ..." 85 86 $(ROOTSYS)/bin/rootcint -f GuiCint.cc \ 87 -c $(INCLUDES) $(HEADERS) GuiIncl.h GuiLinkDef.h 88 89 .cxx.o: 90 @echo " - Compiling " $< 91 $(CXX) $(CXXFLAGS) -c $< -o $@ 92 93 .cc.o: 94 @echo " - Compiling " $< 95 $(CXX) $(CXXFLAGS) -c $< -o $@ 96 97 .c.o: 98 @echo " - Compiling " $< 99 $(CC) $(CFLAGS) -c $< -o $@ 100 101 # 102 # The cleaning facility 103 # 104 105 rmlib: 106 @echo "Removing libraries..." 107 @rm -f lib*.a 108 109 rmcint: 110 @echo "Removing cint-stuff..." 111 @rm -f GuiCint.* 112 113 rmobjs: 114 @echo "Removing object files..." 115 @rm -f *.o 116 117 rmbin: 118 @echo "Removing binary files..." 119 @rm -f core 120 121 122 clean: rmlib rmcint rmobjs rmbin 123 124 mrproper: clean 125 @echo "Removing *~ kk.kk html/..." 126 @rm -f *~ kk.kk 127 128 cflags: 129 @echo $(INCLUDES) $(CXXFLAGS) 53 mrproper: clean rmbak 130 54 131 55 # @endcode
Note:
See TracChangeset
for help on using the changeset viewer.