Ignore:
Timestamp:
03/02/01 12:09:07 (24 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mgui
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mgui/MHexagon.h

    r653 r665  
    1111
    1212#ifndef ROOT_TObject
    13 #include "TObject.h"
     13#include <TObject.h>
    1414#endif
    1515
    1616#ifndef ROOT_TAttLine
    17 #include "TAttLine.h"
     17#include <TAttLine.h>
    1818#endif
    1919
    2020#ifndef ROOT_TAttFill
    21 #include "TAttFill.h"
     21#include <TAttFill.h>
    2222#endif
    2323
  • trunk/MagicSoft/Mars/mgui/Makefile

    r654 r665  
    66#
    77##################################################################
    8 # @maintitle
    9 
    10 # @code
    11 
    12 #
    13 #  please change all system depend values in the
    14 #  config.mk.${OSTYPE} file
    15 #
    16 #
    178include ../Makefile.conf.$(OSTYPE)
    189include ../Makefile.conf.general
    1910
    20 # @endcode
     11#
     12# Handling name of the Root Dictionary Files
     13#
     14CINT  = Gui
    2115
    22 # @code
    23 
     16#
     17# Library name to creatre
     18#
    2419LIB   = mgui.a
    2520
     
    2722#  connect the include files defined in the config.mk file
    2823#
    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)
     24INCLUDES = -I. -I../mbase -I../manalysis -I../mdatacheck -I../meventdisp
    4625
    4726#------------------------------------------------------------------------------
    4827
    49 #.SILENT:
    50 
    5128.SUFFIXES: .c .cc .cxx .h .hxx .o
    5229
    53 
    54 SRCFILES = MGMarsMain.cc \
     30SRCFILES = MCamDisplay.cc \
     31           MCamNeighbor.cc \
     32           MGDataCheckMain.cc \
    5533           MGEventDispMain.cc \
    56            MGDataCheckMain.cc \
     34           MGMarsMain.cc \
    5735           MGMonteCarloMain.cc \
    58            MGPrototyp.cc \
    59            MHexagon.cc \
     36           MGPrototyp.cc \
    6037           MGeomCam.cc \
    6138           MGeomPix.cc \
    62            MCamNeighbor.cc \
    63            MCamDisplay.cc
    64 
     39           MHexagon.cc
    6540
    6641SRCS    = $(SRCFILES)
     
    7247all: $(LIB)
    7348
    74 depend:
    75         @makedepend $(SRCS) $(INCLUDES) $(ROOTCFLAGS) \
    76         -f../Makefile.depend 2> kk.kk ; cat kk.kk
     49include ../Makefile.rules
    7750
    78 $(LIB): $(OBJS) GuiCint.o
    79         @echo " - Building Library $(LIB) ... "
    80         $(AR) $(LIB) *.o
     51clean:  rmlib rmcint rmobjs rmcore rmbin
    8152
    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)
     53mrproper:       clean rmbak
    13054
    13155# @endcode
Note: See TracChangeset for help on using the changeset viewer.