Changeset 3927


Ignore:
Timestamp:
05/01/04 16:33:16 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft
Files:
43 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3926 r3927  
    1919                                                 -*-*- END OF LINE -*-*-
    2020
     21 2004/05/01: Thomas Bretz
     22
     23   * macros/rootlogon.C:
     24     - ignore MARSSYS if libmars.so is found in the current path
     25
     26   * mastro/MObservatory.cc:
     27     - small change to coordinates
     28
     29   * mbase/MLog.[h,cc]:
     30     - enhanced output in case of problem with mutices
     31
     32   * mtemp/TempIncl.h, mtemp/TemlLinkDef.h:
     33     - removed everything
     34
     35   * Makefile*, */Makefile
     36     - changed all to support mtemp/mifae and similar
     37
     38
     39
    2140 2004/05/01: Abelardo Moralejo
     41
    2242   * mmain/MEventDisplay.cc
    2343     - changed back integration range for MC to 0-14 slices to avoid
    2444       confusions.
    2545
     46
     47
    2648 2004/05/01: Markus Gaug
     49
    2750   * macros/dohtml.C
    2851     - include directory mpedestal
     
    4164
    4265
     66
    4367 2004/04/30: Thomas Bretz
    4468
     
    4973   * mbase/MTime.h:
    5074     - added 'istream &operator<<(istream &in, MTime &t)'
     75
     76   * mbase/BaseLinkDef.h:
     77     - added new operator
    5178
    5279
  • trunk/MagicSoft/Mars/Makefile

    r3806 r3927  
    6767          mtools
    6868
    69 #          monline \
    70 
    7169#LIBRARIES = $(SUBDIRS:%=lib/lib%.a)
    7270LIBRARIES = $(SUBDIRS:=.a)
     
    7674
    7775#------------------------------------------------------------------------------
    78 
    7976.SUFFIXES: .c .cc .h .o
    8077
    8178SRCFILES =
    8279
    83 SRCS    = $(SRCFILES)
    84 HEADERS = $(SRCFILES:.cc=.h)
    85 OBJS    = $(SRCFILES:.cc=.o) MCint.o
    86 
    8780############################################################
    88 all: rmlib $(SOLIB) $(PROGRAMS)
     81all: $(SOLIB) $(PROGRAMS)
    8982        @echo " Done. "
    9083        @echo " "
    9184
    9285static: LIBS=$(SUBDIRS:=/*.o) $(OBJS)
    93 static: rmlib $(LIBRARIES) $(PROGRAMS)
     86#static: rmlib $(LIBRARIES) $(PROGRAMS)
     87static: $(LIBRARIES) $(PROGRAMS)
    9488        @echo " Done. "
    9589        @echo " "
     
    10498        @echo " Linking $(SOLIB) ..."
    10599        $(CXX) $(CXXFLAGS) $(DYNLIB) $(OBJS) $(SUBDIRS:=/*.o) $(ROOTGLIBS) -o $@
    106 #       $(CXX) $(CXXFLAGS) $(DYNLIB) $(OBJS) -Wl,--export-dynamic -Llib $(LIBRARIES:%.a=-l%) -o $@
    107100
    108 $(PROGRAMS): $(LIBS) $(PROGRAMS:=.o)
     101$(PROGRAMS): $(SOLIB) $(PROGRAMS:=.o)
    109102        @echo " Linking $@ ..."
    110         $(CXX) $(CXXFLAGS) $(ROOTGLIBS) $(LIBS) $@.o $(MARS_LIB) -o $@
    111 
    112 # FOR CONVINIENCE CREATE Dep-file first!
    113 $(LIBRARIES):
    114         @echo " Creating lib$@:"
    115         (cd $*; $(MAKE) -f Makefile; cd ..; mv $*/$@ lib/lib$@)
    116 
    117 $(MRPROPERS):
    118         @echo " Doing Mr.Proper in $(@:.mrproper=)"
    119         (cd $(@:.mrproper=); ($(MAKE) -f Makefile mrproper > /dev/null); cd ..;)
    120 
    121 $(CLEANERS):
    122         @echo "Cleaning $(@:.clean=):"
    123         (cd $(@:.clean=); $(MAKE) -f Makefile clean; cd ..;)
     103        $(CXX) $(CXXFLAGS) $(ROOTGLIBS) $(SOLIB) $@.o $(MARS_LIB) -o $@
    124104
    125105dox: $(SOLIB)
  • trunk/MagicSoft/Mars/Makefile.conf.general

    r3782 r3927  
    2424FFLAGS    = $(CXXFLAGS)
    2525
     26HEADERS = $($(subst .cxx,.cc,SRCFILES):.cc=.h)
     27OBJS    = $($(subst .cxx,.cc,SRCFILES):.cc=.o) $(CINT)Cint.o
  • trunk/MagicSoft/Mars/Makefile.conf.linux

    r2491 r3927  
    66#
    77##################################################################
    8 # @maintitle
    9 
    10 # @code
    118
    129# compilers
     
    3633
    3734.SILENT:
    38 
    39 # @endcode
    40 ##EOF
    41 
    42 
  • trunk/MagicSoft/Mars/Makefile.rules

    r3445 r3927  
    11include $(CINT)Dep.d
    22
     3$(MRPROPERS):
     4        @echo " Doing Mr.Proper in $(@:.mrproper=)"
     5        (cd $(@:.mrproper=); ($(MAKE) -f Makefile mrproper > /dev/null); cd ..;)
     6
     7$(CLEANERS):
     8        @echo "Cleaning $(@:.clean=):"
     9        (cd $(@:.clean=); $(MAKE) -f Makefile clean; cd ..;)
     10
     11$(LIBRARIES):
     12        @echo " Calling make in $(@:.a=)"
     13        (cd $*; $(MAKE) -f Makefile all)
     14
    315$(LIB): $(OBJS) $(CINT)Cint.o
    4         @echo " - Building Library lib$(LIB)"
    5         $(AR) $(LIB) $(OBJS) $(CINT)Cint.o
     16        @echo " - Building Library $(LIB)"
     17        $(CXX) $(CXXFLAGS) $(DYNLIB) $(OBJS) $(CINT)Cint.o -o $(LIB)
    618        @echo " "
    719
    820$(CINT)Cint.cc: $(HEADERS) $(CINT)LinkDef.h
    921        @echo " - Generating dictionary $(CINT)Cint.cc"
    10 
    1122        $(ROOTSYS)/bin/rootcint -f $(CINT)Cint.cc \
    1223        -c $(INCLUDES) $(DEFINES) $(HEADERS) $(CINT)Incl.h $(CINT)LinkDef.h
  • trunk/MagicSoft/Mars/macros/rootlogon.C

    r3758 r3927  
    8585    cout << endl;
    8686
    87     TString dir = gSystem->Getenv("MARSSYS");
     87    const Bool_t fileexist = !gSystem->AccessPathName("libmars.so", kFileExists);
     88
     89    TString dir = fileexist ? "" : gSystem->Getenv("MARSSYS");
    8890    if (!dir.IsNull())
    8991    {
  • trunk/MagicSoft/Mars/manalysis/Makefile

    r3806 r3927  
    11##################################################################
    22#
    3 #   makefile
     3#   subdirectory makefile
    44#
    55#   for the MARS software
     
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
    1315#
    1416CINT  = Analysis
    15 
    16 #
    17 # Library name to creatre
    18 #
    19 LIB   = manalysis.a
    2017
    2118#
     
    2825           -I../mbadpixels -I../mastro -I../mpedestal
    2926# mcalib: MGeomApply (MCalibrationCam)
    30 
    31 #------------------------------------------------------------------------------
    32 
    33 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3427
    3528SRCFILES = MHPedestalPix.cc \
     
    7770           MMcCalibrationUpdate.cc
    7871
    79 SRCS    = $(SRCFILES)
    80 HEADERS = $(SRCFILES:.cc=.h)
    81 OBJS    = $(SRCFILES:.cc=.o)
    82 
    8372############################################################
    8473
    85 all: $(LIB)
     74all:  $(OBJS)
    8675
    8776include ../Makefile.rules
     
    9079
    9180mrproper:       clean rmbak
    92 
    93 # @endcode
  • trunk/MagicSoft/Mars/mastro/MObservatory.cc

    r3568 r3927  
    7575    switch (name)
    7676    {
    77         // BE EXTREMLY CARFEFULL CHANGING THIS CLASS! THE TRACKING SYSTEM
    78         // IS BASED ON IT!
     77        // BE EXTREMLY CARFEFULL CHANGING THIS CLASS!
     78        // THE TRACKING SYSTEM IS BASED ON IT!
    7979    case kMagic1:
    80         // Values taken from the GPS Receiver (avg 20h)
    81         // on 26/11/2003 at 17h30 in the counting house
    82         fLatitude  = MAstro::Dms2Rad(28, 45, 42.576, '+');
    83         fLongitude = MAstro::Dms2Rad(17, 53, 26.460, '-');
    84         fHeight    = 2196.5; // m
     80        // Values taken from the GPS Receiver (avg 24h)
     81        // on 29/04/2004 at 17h30 in the counting house
     82        fLatitude  = MAstro::Dms2Rad(28, 45, 42.462, '+');
     83        fLongitude = MAstro::Dms2Rad(17, 53, 26.525, '-');
     84        fHeight    = 2199.4; // m
    8585        fObservatoryName = "Observatorio del Roque de los Muchachos (Magic1)";
    8686        break;
  • trunk/MagicSoft/Mars/mastro/Makefile

    r3811 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
     
    1517
    1618#
    17 # Library name to creatre
    18 #
    19 LIB   = mastro.a
    20 
    21 #
    2219#  connect the include files defined in the config.mk file
    2320#
    2421INCLUDES =  -I. -I../mbase -I../mgeom -I../mtemp
    25 
    2622# mgeom (MAstroCamera): MGeomCam, MGeomMirror
    27 
    28 #------------------------------------------------------------------------------
    29 
    30 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3123
    3224SRCFILES = MAstro.cc \
     
    3628           MObservatory.cc
    3729
    38 SRCS    = $(SRCFILES)
    39 HEADERS = $(SRCFILES:.cc=.h)
    40 OBJS    = $(SRCFILES:.cc=.o)
    41 
    4230############################################################
    4331
    44 all: $(LIB)
     32all: $(OBJS)
    4533
    4634include ../Makefile.rules
    4735
    48 #clean: rmcint rmobjs rmcore rmlib
    49 
    5036mrproper:       clean rmbak
    51 
    52 # @endcode
    53 
  • trunk/MagicSoft/Mars/mbadpixels/Makefile

    r3806 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
    1315#
    1416CINT  = BadPixels
    15 
    16 #
    17 # Library name to creatre
    18 #
    19 LIB   = mbadpixels.a
    2017
    2118#
     
    3027# MBadPixelsTreat (mpedestal): MPedPhot*
    3128
    32 
    33 #------------------------------------------------------------------------------
    34 
    3529.SUFFIXES: .c .cc .cxx .h .hxx .o
    3630
     
    4236           MMcBadPixelsSet.cc
    4337
    44 SRCS    = $(SRCFILES)
    45 HEADERS = $(SRCFILES:.cc=.h)
    46 OBJS    = $(SRCFILES:.cc=.o)
    47 
    4838############################################################
    4939
    50 all: $(LIB)
     40all: $(OBJS)
    5141
    5242include ../Makefile.rules
     
    5545
    5646mrproper:       clean rmbak
    57 
    58 # @endcode
  • trunk/MagicSoft/Mars/mbase/MLog.cc

    r2784 r3927  
    359359
    360360    // lock mutex
    361     Lock();
     361    Lock("UpdateGui");
    362362
    363363    TGText &txt=*fGui->GetText();
     
    387387
    388388    // release mutex
    389     UnLock();
    390 }
    391 
    392 void MLog::Lock()
     389    UnLock("UpdateGui");
     390}
     391
     392void MLog::Lock(const char *msg)
    393393{
    394394#ifdef _REENTRANT
    395     fMuxGui->Lock();
     395    if (fMuxGui->Lock()==13)
     396        Error("Lock", "%s - mutex is already locked by this thread\n", msg);
    396397#endif
    397398}
    398399
    399 void MLog::UnLock()
     400void MLog::UnLock(const char *msg)
    400401{
    401402#ifdef _REENTRANT
    402     fMuxGui->UnLock();
     403    if (fMuxGui->UnLock()==13)
     404        Error("UnLock", "%s - tried to unlock mutex locked by other thread\n", msg);
    403405#endif
    404406}
     
    410412int MLog::sync()
    411413{
    412     Lock();
     414    Lock("sync");
    413415    WriteBuffer();
    414     UnLock();
     416    UnLock("sync");
    415417
    416418    if (fDevice&eStdout)
     
    446448    if (fOutputLevel <= fDebugLevel)
    447449    {
    448         Lock();
     450        Lock("overflow");
    449451
    450452        *fPPtr++ = (char)i;
     
    453455            WriteBuffer();
    454456
    455         UnLock();
     457        UnLock("overflow");
    456458    }
    457459
  • trunk/MagicSoft/Mars/mbase/MLog.h

    r3183 r3927  
    102102    ~MLog();
    103103
    104     void Lock();
    105     void UnLock();
     104    void Lock(const char *msg);
     105    void UnLock(const char *msg);
    106106
    107107    void EnableDirectGui()  { fIsDirectGui = kTRUE; }
  • trunk/MagicSoft/Mars/mbase/Makefile

    r3581 r3927  
    11##################################################################
    22#
    3 #   makefile
     3#   subdirectory makefile
    44#
    55#   for the MARS software
    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#------------------------------------------------------------------------------
    2112
    2213INCLUDES = -I. -I../mfileio -I../mfbase -I../mastro
     
    2516# mastro:   MAstro (MTime)
    2617
    27 # @code
    28 
    29 CINT     = Base
    30 LIB      = mbase.a
    31 
    32 #------------------------------------------------------------------------------
    33 
    34 .SUFFIXES: .c .cc .cxx .h .hxx .o
     18CINT = Base
    3519
    3620SRCFILES = MLogo.cc \
     
    4933           MFilter.cc \
    5034           MEvtLoop.cc \
    51            MStatusDisplay.cc \
    5235           MProgressBar.cc \
    5336           MSearch.cc \
     
    7053           MPrint.cc
    7154
    72 SRCS    = $(SRCFILES)
    73 HEADERS = $(SRCFILES:.cc=.h)
    74 OBJS    = $(SRCFILES:.cc=.o)
    75 
    7655############################################################
    7756
    78 all: $(LIB)
     57all: $(OBJS)
    7958
    8059include ../Makefile.rules
    8160
    82 #clean: rmcint rmobjs rmcore rmlib
    83 
    8461mrproper:       clean rmbak
    85 
    86 # @endcode
  • trunk/MagicSoft/Mars/mcalib/Makefile

    r3917 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
    1315#
    1416CINT  = Calib
    15 
    16 #
    17 # Library name to creatre
    18 #
    19 LIB   = mcalib.a
    2017
    2118#
     
    3330# mmc:       MMcFadcHeader, MMcEvt
    3431# mimage     MHillas
    35 
    36 #------------------------------------------------------------------------------
    37 
    38 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3932
    4033SRCFILES = MCalibrate.cc \
     
    5548           MCalibrationChargePINDiode.cc  \
    5649           MHCalibrationChargeBlindPix.cc \
    57            MHCalibrationChargeBlindPix.cc \
    5850           MHCalibrationChargePix.cc \
    5951           MHCalibrationCam.cc \
     
    6961           MHGausEvents.cc
    7062
    71 SRCS    = $(SRCFILES)
    72 HEADERS = $(SRCFILES:.cc=.h)
    73 OBJS    = $(SRCFILES:.cc=.o)
    74 
    7563############################################################
    7664
    77 all: $(LIB)
     65all: $(OBJS)
    7866
    7967include ../Makefile.rules
    8068
    81 #clean: rmcint rmobjs rmcore rmlib
    82 
    8369mrproper:       clean rmbak
    84 
    85 # @endcode
  • trunk/MagicSoft/Mars/mcamera/Makefile

    r2800 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
     
    1517
    1618#
    17 # Library name to creatre
    18 #
    19 LIB   = mcamera.a
    20 
    21 #
    2219#  connect the include files defined in the config.mk file
    2320#
    2421INCLUDES = -I. -I../mbase -I../mgui
    2522# mgui - MCameraDC <MCamEvent>
    26 
    27 #------------------------------------------------------------------------------
    28 
    29 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3023
    3124SRCFILES = MCameraAUX.cc \
     
    3932           MCameraPowerSupply.cc
    4033
    41 SRCS    = $(SRCFILES)
    42 HEADERS = $(SRCFILES:.cc=.h)
    43 OBJS    = $(SRCFILES:.cc=.o)
    44 
    4534############################################################
    4635
    47 all: $(LIB)
     36all: $(OBJS)
    4837
    4938include ../Makefile.rules
    5039
    51 #clean: rmcint rmobjs rmcore rmlib
    52 
    5340mrproper:       clean rmbak
    54 
    55 # @endcode
    56 
  • trunk/MagicSoft/Mars/mdata/Makefile

    r3666 r3927  
    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#------------------------------------------------------------------------------
    2112
    2213INCLUDES = -I. -I../mbase -I../mhbase
    2314
    24 # @code
    25 
    2615CINT     = Data
    27 LIB      = mdata.a
    28 
    29 #------------------------------------------------------------------------------
    30 
    31 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3216
    3317SRCFILES = MData.cc \
     
    4024           MDataFormula.cc
    4125
    42 SRCS    = $(SRCFILES)
    43 HEADERS = $(SRCFILES:.cc=.h)
    44 OBJS    = $(SRCFILES:.cc=.o)
    45 
    4626############################################################
    4727
    48 all: $(LIB)
     28all: $(OBJS)
    4929
    5030include ../Makefile.rules
    5131
    52 #clean: rmcint rmobjs rmcore rmlib
    53 
    5432mrproper:       clean rmbak
    5533
    56 # @endcode
    57 
  • trunk/MagicSoft/Mars/mfbase/Makefile

    r3331 r3927  
    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#------------------------------------------------------------------------------
    2112
    2213INCLUDES = -I. -I../mbase -I../mdata -I../mfileio -I../mhbase
    2314
    24 # @code
    25 
    2615CINT     = FBase
    27 LIB      = mfbase.a
    28 
    29 #------------------------------------------------------------------------------
    30 
    31 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3216
    3317SRCFILES = MF.cc \
     
    3923           MFRealTimePeriod.cc
    4024
    41 SRCS    = $(SRCFILES)
    42 HEADERS = $(SRCFILES:.cc=.h)
    43 OBJS    = $(SRCFILES:.cc=.o)
    44 
    4525############################################################
    4626
    47 all: $(LIB)
     27all: $(OBJS)
    4828
    4929include ../Makefile.rules
    5030
    51 #clean: rmcint rmobjs rmcore rmlib
    52 
    5331mrproper:       clean rmbak
    54 
    55 # @endcode
    56 
  • trunk/MagicSoft/Mars/mfileio/Makefile

    r3821 r3927  
    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#------------------------------------------------------------------------------
    2112
    2213INCLUDES = -I. -I../mbase -I../mraw -I../mmc -I../mreflector -I../mgui \
     
    3425#mpedestal:  MPedestalCam  (MCT1ReadAscii)
    3526
    36 # @code
    37 
    3827CINT     = FileIO
    39 LIB      = mfileio.a
    40 
    41 #------------------------------------------------------------------------------
    42 
    43 .SUFFIXES: .c .cc .cxx .h .hxx .o
    4428
    4529SRCFILES = MRead.cc \
     
    5539           MCT1ReadPreProc.cc
    5640
    57 SRCS    = $(SRCFILES)
    58 HEADERS = $(SRCFILES:.cc=.h)
    59 OBJS    = $(SRCFILES:.cc=.o)
    60 
    6141############################################################
    6242
    63 all: $(LIB)
     43all: $(OBJS)
    6444
    6545include ../Makefile.rules
    6646
    67 #clean: rmcint rmobjs rmcore rmlib
    68 
    6947mrproper:       clean rmbak
    70 
    71 # @endcode
    72 
  • trunk/MagicSoft/Mars/mfilter/Makefile

    r3816 r3927  
    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#------------------------------------------------------------------------------
    2112
    2213INCLUDES = -I. -I../mbase -I../mfbase -I../mraw -I../mmc -I../mdata \
     
    2516           -I../mpedestal
    2617
    27 # @code
    28 
    2918CINT     = Filter
    30 LIB      = mfilter.a
    31 
    32 #------------------------------------------------------------------------------
    33 
    34 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3519
    3620SRCFILES = MFTriggerLvl1.cc \
     
    4933           MFEnergySlope.cc
    5034
    51 SRCS    = $(SRCFILES)
    52 HEADERS = $(SRCFILES:.cc=.h)
    53 OBJS    = $(SRCFILES:.cc=.o)
    54 
    5535############################################################
    5636
    57 all: $(LIB)
     37all: $(OBJS)
    5838
    5939include ../Makefile.rules
    6040
    61 #clean: rmcint rmobjs rmcore rmlib
    62 
    6341mrproper:       clean rmbak
    64 
    65 # @endcode
    66 
  • trunk/MagicSoft/Mars/mgeom/Makefile

    r2800 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
     
    1517
    1618#
    17 # Library name to creatre
    18 #
    19 LIB   = mgeom.a
    20 
    21 #
    2219#  connect the include files defined in the config.mk file
    2320#
    2421INCLUDES = -I. -I../mbase -I../MBase
    25 
    26 #------------------------------------------------------------------------------
    27 
    28 .SUFFIXES: .c .cc .cxx .h .hxx .o
    2922
    3023SRCFILES = MGeomPix.cc \
     
    4134           MGeomPMT.cc
    4235
    43 SRCS    = $(SRCFILES)
    44 HEADERS = $(SRCFILES:.cc=.h)
    45 OBJS    = $(SRCFILES:.cc=.o)
    46 
    4736############################################################
    4837
    49 all: $(LIB)
     38all: $(OBJS)
    5039
    5140include ../Makefile.rules
    5241
    53 #clean: rmcint rmobjs rmcore rmlib
    54 
    5542mrproper:       clean rmbak
    56 
    57 # @endcode
    58 
  • trunk/MagicSoft/Mars/mgui/Makefile

    r2800 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
     
    1517
    1618#
    17 # Library name to creatre
    18 #
    19 LIB   = mgui.a
    20 
    21 #
    2219#  connect the include files defined in the config.mk file
    2320#
    2421INCLUDES = -I. -I../mbase -I../mgeom
    2522
    26 #------------------------------------------------------------------------------
    27 
    28 .SUFFIXES: .c .cc .cxx .h .hxx .o
    29 
    3023SRCFILES = MHexagon.cc \
    3124           MCamEvent.cc
    3225           
    33 SRCS    = $(SRCFILES)
    34 HEADERS = $(SRCFILES:.cc=.h)
    35 OBJS    = $(SRCFILES:.cc=.o)
    36 
    3726############################################################
    3827
    39 all: $(LIB)
     28all: $(OBJS)
    4029
    4130include ../Makefile.rules
    4231
    43 #clean: rmcint rmobjs rmcore rmlib
    44 
    4532mrproper:       clean rmbak
    46 
    47 # @endcode
    48 
  • trunk/MagicSoft/Mars/mhbase/Makefile

    r2800 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
     
    1517
    1618#
    17 # Library name to creatre
    18 #
    19 LIB   = mhbase.a
    20 
    21 #
    2219#  connect the include files defined in the config.mk file
    2320#
    2421INCLUDES = -I. -I../mbase -I../mdata
    25 
    26 #------------------------------------------------------------------------------
    27 
    28 .SUFFIXES: .c .cc .cxx .h .hxx .o
    2922
    3023SRCFILES = MFillH.cc \
     
    3629           MHMatrix.cc
    3730
    38 SRCS    = $(SRCFILES)
    39 HEADERS = $(SRCFILES:.cc=.h)
    40 OBJS    = $(SRCFILES:.cc=.o)
    41 
    4231############################################################
    4332
    44 all: $(LIB)
     33all: $(OBJS)
    4534
    4635include ../Makefile.rules
    4736
    48 #clean: rmcint rmobjs rmcore rmlib
    49 
    5037mrproper:       clean rmbak
    51 
    52 # @endcode
    53 
    54 
    55 
    56 
    57 
    58 
    59 
    60 
  • trunk/MagicSoft/Mars/mhist/Makefile

    r3816 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
    1315#
    1416CINT  = Hist
    15 
    16 #
    17 # Library name to creatre
    18 #
    19 LIB   = mhist.a
    2017
    2118#
     
    2623           -I../mmain -I../mmc -I../mreflector -I../mpointing       \
    2724           -I../mastro -I../mpedestal
    28 
    29 #------------------------------------------------------------------------------
    30 
    31 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3225
    3326SRCFILES = MHEvent.cc \
     
    6457#           MHCurrents.cc \
    6558
    66 
    67 SRCS    = $(SRCFILES)
    68 HEADERS = $(SRCFILES:.cc=.h)
    69 OBJS    = $(SRCFILES:.cc=.o)
    70 
    7159############################################################
    7260
    73 all: $(LIB)
     61all: $(OBJS)
    7462
    7563include ../Makefile.rules
    7664
    77 #clean: rmcint rmobjs rmcore rmlib
    78 
    7965mrproper:       clean rmbak
    80 
    81 # @endcode
    82 
    83 
    84 
    85 
    86 
    87 
    88 
    89 
  • trunk/MagicSoft/Mars/mhistmc/Makefile

    r3795 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
     
    1517
    1618#
    17 # Library name to creatre
    18 #
    19 LIB   = mhistmc.a
    20 
    21 #
    2219#  connect the include files defined in the config.mk file
    2320#
    2421INCLUDES = -I. -I../mbase -I../mhbase -I../mhist -I../mmc -I../manalysis \
    2522           -I../mimage -I../mgeom -I../mgui
    26 
    27 #------------------------------------------------------------------------------
    28 
    29 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3023
    3124SRCFILES = MHMcEnergy.cc \
     
    4235           MHMcTriggerLvl2.cc
    4336
    44 SRCS    = $(SRCFILES)
    45 HEADERS = $(SRCFILES:.cc=.h)
    46 OBJS    = $(SRCFILES:.cc=.o)
    47 
    4837############################################################
    4938
    50 all: $(LIB)
     39all: $(OBJS)
    5140
    5241include ../Makefile.rules
    5342
    54 #clean: rmcint rmobjs rmcore rmlib
    55 
    5643mrproper:       clean rmbak
    57 
    58 # @endcode
    59 
    60 
    61 
    62 
    63 
    64 
    65 
    66 
  • trunk/MagicSoft/Mars/mhvstime/Makefile

    r3395 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
    1315#
    1416CINT  = HVsTime
    15 
    16 #
    17 # Library name to creatre
    18 #
    19 LIB   = mhvstime.a
    2017
    2118#
     
    2825# mraw  (MRawEvtHeader)
    2926
    30 #------------------------------------------------------------------------------
    31 
    32 .SUFFIXES: .c .cc .cxx .h .hxx .o
    33 
    3427SRCFILES = MHVsTime.cc \
    3528           MHPixVsTime.cc \
    3629           MHSectorVsTime.cc
    37            
    38 
    39 SRCS    = $(SRCFILES)
    40 HEADERS = $(SRCFILES:.cc=.h)
    41 OBJS    = $(SRCFILES:.cc=.o)
    4230
    4331############################################################
    4432
    45 all: $(LIB)
     33all: $(OBJS)
    4634
    4735include ../Makefile.rules
    4836
    49 #clean: rmcint rmobjs rmcore rmlib
    50 
    5137mrproper:       clean rmbak
    52 
    53 # @endcode
  • trunk/MagicSoft/Mars/mimage/Makefile

    r3821 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
     
    1517
    1618#
    17 # Library name to creatre
    18 #
    19 LIB   = mimage.a
    20 
    21 #
    2219#  connect the include files defined in the config.mk file
    2320#
    2421INCLUDES = -I. -I../mbase -I../mhbase -I../mgeom -I../manalysis \
    2522           -I../mgui -I../mmc -I../mpointing -I../mpedestal
    26 
    27 #------------------------------------------------------------------------------
    28 
    29 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3023
    3124SRCFILES = MImgCleanStd.cc \
     
    4639           MStereoCalc.cc
    4740
    48 SRCS    = $(SRCFILES)
    49 HEADERS = $(SRCFILES:.cc=.h)
    50 OBJS    = $(SRCFILES:.cc=.o)
    51 
    5241############################################################
    5342
    54 all: $(LIB)
     43all: $(OBJS)
    5544
    5645include ../Makefile.rules
    5746
    58 #clean: rmcint rmobjs rmcore rmlib
    59 
    6047mrproper:       clean rmbak
    61 
    62 # @endcode
  • trunk/MagicSoft/Mars/mjobs/Makefile

    r3854 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
    1315#
    1416CINT  = Jobs
    15 
    16 #
    17 # Library name to creatre
    18 #
    19 LIB   = mjobs.a
    2017
    2118#
     
    2825#manalysis: MChisqEval (MParameters)
    2926
    30 #------------------------------------------------------------------------------
    31 
    32 .SUFFIXES: .c .cc .cxx .h .hxx .o
    33 
    3427SRCFILES = MJPedestal.cc \
    3528           MJCalibration.cc \
     
    3831           MGCamDisplays.cc
    3932
    40 SRCS    = $(SRCFILES)
    41 HEADERS = $(SRCFILES:.cc=.h)
    42 OBJS    = $(SRCFILES:.cc=.o)
    43 
    4433############################################################
    4534
    46 all: $(LIB)
     35all: $(OBJS)
    4736
    4837include ../Makefile.rules
    4938
    50 #clean: rmcint rmobjs rmcore rmlib
    51 
    5239mrproper:       clean rmbak
    53 
    54 # @endcode
    55 
  • trunk/MagicSoft/Mars/mmain/Makefile

    r3815 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
    1315#
    1416CINT  = Main
    15 
    16 #
    17 # Library name to creatre
    18 #
    19 LIB   = mmain.a
    2017
    2118#
     
    2724           -I../mdata -I../msignal -I../mcalib -I../mbadpixels            \
    2825           -I../mpointing -I../mpedestal
    29 
    30 #------------------------------------------------------------------------------
    31 
    32 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3326
    3427SRCFILES = MBrowser.cc \
     
    4336           MCameraDisplay.cc
    4437
    45 SRCS    = $(SRCFILES)
    46 HEADERS = $(SRCFILES:.cc=.h)
    47 OBJS    = $(SRCFILES:.cc=.o)
    48 
    4938############################################################
    5039
    51 all: $(LIB)
     40all: $(OBJS)
    5241
    5342include ../Makefile.rules
    5443
    55 #clean: rmcint rmobjs rmcore rmlib
    56 
    5744mrproper:       clean rmbak
    58 
    59 # @endcode
  • trunk/MagicSoft/Mars/mmontecarlo/Makefile

    r3331 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
    1315#
    1416CINT  = MonteCarlo
    15 
    16 #
    17 # Library name to creatre
    18 #
    19 LIB   = mmontecarlo.a
    2017
    2118#
     
    2623           -I../mfilter -I../mdata -I../mfbase
    2724
    28 #------------------------------------------------------------------------------
    29 
    30 .SUFFIXES: .c .cc .cxx .h .hxx .o
    31 
    3225SRCFILES = MMcCollectionAreaCalc.cc \
    3326           MMcThresholdCalc.cc \
     
    3730           MMcWeightEnergySpecCalc.cc
    3831
    39 SRCS    = $(SRCFILES)
    40 HEADERS = $(SRCFILES:.cc=.h)
    41 OBJS    = $(SRCFILES:.cc=.o)
    42 
    4332############################################################
    4433
    45 all: $(LIB)
     34all: $(OBJS)
    4635
    4736include ../Makefile.rules
    4837
    49 #clean: rmcint rmobjs rmcore rmlib
    50 
    5138mrproper:       clean rmbak
    52 
    53 # @endcode
    54 
  • trunk/MagicSoft/Mars/mpedestal/Makefile

    r3806 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
    1315#
    1416CINT  = Pedestal
    15 
    16 #
    17 # Library name to creatre
    18 #
    19 LIB   = mpedestal.a
    2017
    2118#
     
    3229# MPedPhotCalc      (MBadPixelsCam)
    3330
    34 #------------------------------------------------------------------------------
    35 
    36 .SUFFIXES: .c .cc .cxx .h .hxx .o
    37 
    3831SRCFILES = MMcPedestalCopy.cc \
    3932           MMcPedestalNSBAdd.cc \
     
    4538           MPedestalPix.cc
    4639
    47 SRCS    = $(SRCFILES)
    48 HEADERS = $(SRCFILES:.cc=.h)
    49 OBJS    = $(SRCFILES:.cc=.o)
    50 
    5140############################################################
    5241
    53 all: $(LIB)
     42all: $(OBJS)
    5443
    5544include ../Makefile.rules
     
    5847
    5948mrproper:       clean rmbak
    60 
    61 # @endcode
  • trunk/MagicSoft/Mars/mpointing/Makefile

    r3570 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
    1315#
    1416CINT = Pointing
    15 
    16 #
    17 # Library name to creatre
    18 #
    19 LIB  = mpointing.a
    2017
    2118#
     
    2522           -I../mastro -I../mgeom
    2623
    27 #------------------------------------------------------------------------------
    28 
    29 .SUFFIXES: .c .cc .cxx .h .hxx .o
    30 
    3124SRCFILES = MPointingPos.cc \
    3225           MPointingPosCalc.cc \
     
    3427           MSrcPosCalc.cc
    3528
    36 SRCS    = $(SRCFILES)
    37 HEADERS = $(SRCFILES:.cc=.h)
    38 OBJS    = $(SRCFILES:.cc=.o)
    39 
    4029############################################################
    4130
    42 all: $(LIB)
     31all: $(OBJS)
    4332
    4433include ../Makefile.rules
    4534
    46 #clean: rmcint rmobjs rmcore rmlib
    47 
    4835mrproper:       clean rmbak
    49 
    50 # @endcode
    51 
  • trunk/MagicSoft/Mars/mranforest/Makefile

    r2862 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
     
    1517
    1618#
    17 # Library name to creatre
    18 #
    19 LIB   = mranforest.a
    20 
    21 #
    2219#  connect the include files defined in the config.mk file
    2320#
    2421INCLUDES = -I. -I../mbase -I../mhbase -I../mdata -I../manalysis -I../mmc -I../mfileio
    2522#               MParContainer MH     MDataArray MHadronness    MMcEvt
    26 #------------------------------------------------------------------------------
    27 
    28 .SUFFIXES: .c .cc .cxx .h .hxx .o
    2923
    3024SRCFILES = MRanTree.cc \
     
    3630           MHRanForestGini.cc
    3731
    38 SRCS    = $(SRCFILES)
    39 HEADERS = $(SRCFILES:.cc=.h)
    40 OBJS    = $(SRCFILES:.cc=.o)
    41 
    4232############################################################
    4333
    44 all: $(LIB)
     34all: $(OBJS)
    4535
    4636include ../Makefile.rules
    4737
    48 #clean: rmcint rmobjs rmcore rmlib
    49 
    5038mrproper:       clean rmbak
    51 
    52 # @endcode
  • trunk/MagicSoft/Mars/mraw/Makefile

    r2800 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
     
    1517
    1618#
    17 # Library name to creatre
    18 #
    19 LIB   = mraw.a
    20 
    21 #
    2219#  connect the include files defined in the config.mk file
    2320#
    2421INCLUDES = -I. -I../mbase -I../mgui -I../mgeom -I../MBase
    2522# mgui (MCamEvent), mgeom(MGeomCam)
    26 
    27 #------------------------------------------------------------------------------
    28 
    29 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3023
    3124SRCFILES = MRawRunHeader.cc \
     
    4033           MRawSocketRead.cc
    4134
    42 SRCS    = $(SRCFILES)
    43 HEADERS = $(SRCFILES:.cc=.h)
    44 OBJS    = $(SRCFILES:.cc=.o)
    45 
    4635############################################################
    4736
    48 all: $(LIB)
     37all: $(OBJS)
    4938
    5039include ../Makefile.rules
    5140
    52 #clean: rmcint rmobjs rmcore rmlib
    53 
    5441mrproper:       clean rmbak
    55 
    56 # @endcode
    57 
  • trunk/MagicSoft/Mars/mreflector/Makefile

    r2800 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
     
    1517
    1618#
    17 # Library name to creatre
    18 #
    19 LIB   = mreflector.a
    20 
    21 #
    2219#  connect the include files defined in the config.mk file
    2320#
    2421INCLUDES = -I. -I../mbase -I../mgui -I../mgeom
    25 
    26 #------------------------------------------------------------------------------
    27 
    28 .SUFFIXES: .c .cc .cxx .h .hxx .o
    2922
    3023SRCFILES = MRflEvtData.cc \
     
    3326           MRflSinglePhoton.cc
    3427
    35 SRCS    = $(SRCFILES)
    36 HEADERS = $(SRCFILES:.cc=.h)
    37 OBJS    = $(SRCFILES:.cc=.o)
    38 
    3928############################################################
    4029
    41 all: $(LIB)
     30all: $(OBJS)
    4231
    4332include ../Makefile.rules
    4433
    45 #clean: rmcint rmobjs rmcore rmlib
    46 
    4734mrproper:       clean rmbak
    48 
    49 # @endcode
    50 
  • trunk/MagicSoft/Mars/mreport/Makefile

    r3331 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
     
    1517
    1618#
    17 # Library name to creatre
    18 #
    19 LIB   = mreport.a
    20 
    21 #
    2219#  connect the include files defined in the config.mk file
    2320#
    2421INCLUDES = -I. -I../mbase -I../mastro -I../mcamera -I../mgui
    2522# mgui - MCameraDC <MCamEvent>
    26 
    27 #------------------------------------------------------------------------------
    28 
    29 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3023
    3124SRCFILES = MReport.cc \
     
    4033           MReportFileRead.cc
    4134
    42 SRCS    = $(SRCFILES)
    43 HEADERS = $(SRCFILES:.cc=.h)
    44 OBJS    = $(SRCFILES:.cc=.o)
    45 
    4635############################################################
    4736
    48 all: $(LIB)
     37all: $(OBJS)
    4938
    5039include ../Makefile.rules
    5140
    52 #clean: rmcint rmobjs rmcore rmlib
    53 
    5441mrproper:       clean rmbak
    55 
    56 # @endcode
    57 
  • trunk/MagicSoft/Mars/msignal/Makefile

    r3913 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
    1315#
    1416CINT  = Signal
    15 
    16 #
    17 # Library name to creatre
    18 #
    19 LIB   = msignal.a
    2017
    2118#
     
    3027# mraw (MRawEvtData):       MExtractSignal
    3128# manalysis (MPedestalCam): MExtractSignal
    32 
    33 #------------------------------------------------------------------------------
    34 
    35 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3629
    3730SRCFILES = MExtractedSignalCam.cc \
     
    5750           MArrivalTimePix.cc
    5851
    59 SRCS    = $(SRCFILES)
    60 HEADERS = $(SRCFILES:.cc=.h)
    61 OBJS    = $(SRCFILES:.cc=.o)
    62 
    6352############################################################
    6453
    65 all: $(LIB)
     54all: $(OBJS)
    6655
    6756include ../Makefile.rules
    6857
    69 #clean: rmcint rmobjs rmcore rmlib
    70 
    7158mrproper:       clean rmbak
    72 
    73 # @endcode
    74 
  • trunk/MagicSoft/Mars/msql/Makefile

    r3328 r3927  
    99include ../Makefile.conf.general
    1010
     11############################################################
     12
    1113#
    1214# Handling name of the Root Dictionary Files
     
    1517
    1618#
    17 # Library name to creatre
    18 #
    19 LIB   = msql.a
    20 
    21 #
    2219#  connect the include files defined in the config.mk file
    2320#
    2421INCLUDES = -I. -I../mbase -I../mraw
    25 
    26 .SUFFIXES: .c .cc .cxx .h .hxx .o
    2722
    2823SRCFILES = \
     
    3025        MSqlInsertRun.cc
    3126
    32 SRCS    = $(SRCFILES)
    33 HEADERS = $(SRCFILES:.cc=.h)
    34 OBJS    = $(SRCFILES:.cc=.o)
    35 
    3627############################################################
    3728
    38 all: $(LIB)
     29all: $(OBJS)
    3930
    4031include ../Makefile.rules
    4132
    42 #clean: rmcint rmobjs rmcore rmlib
    43 
    4433mrproper:       clean rmbak
    45 
    46 # @endcode
    47 
    48 
  • trunk/MagicSoft/Mars/mtemp/Makefile

    r2800 r3927  
    11##################################################################
    22#
    3 #   makefile
     3#   subdirectory makefile
    44#
    55#   for the MARS software
     
    99include ../Makefile.conf.general
    1010
    11 #
    12 # Handling name of the Root Dictionary Files
    13 #
    14 CINT  = Temp
     11#------------------------------------------------------------------------------
    1512
    16 #
    17 # Library name to creatre
    18 #
    19 LIB   = mtemp.a
     13INCLUDES = -I.
    2014
    21 #
    22 #  connect the include files defined in the config.mk file
    23 #
    24 INCLUDES = -I. -I../mbase -I../mraw -I../manalysis -I../mmc \
    25            -I../mgui -I../mgeom -I../mdata -I../mhist -I../../slalib
     15CINT     = Temp
    2616
    27 .SUFFIXES: .c .cc .cxx .h .hxx .o
    28 
    29 SRCFILES = \
    30         MObservatoryLocation.cc \
    31         MVPObject.cc \
    32         MVPPlotter.cc \
    33         MVPTime.cc
    34 
    35 SRCS    = $(SRCFILES)
    36 HEADERS = $(SRCFILES:.cc=.h)
    37 OBJS    = $(SRCFILES:.cc=.o)
     17SRCFILES =
    3818
    3919############################################################
    4020
    41 all: $(LIB)
     21all: $(OBJS)
    4222
    4323include ../Makefile.rules
    4424
    45 #clean: rmcint rmobjs rmcore rmlib
    46 
    4725mrproper:       clean rmbak
    48 
    49 # @endcode
    50 
    51 
  • trunk/MagicSoft/Mars/mtemp/TempIncl.h

    r1681 r3927  
    11#ifndef __CINT__
    22
    3 #include <slalib.h>
    4 
    53#endif // __CINT__
  • trunk/MagicSoft/Mars/mtemp/TempLinkDef.h

    r1681 r3927  
    55#pragma link off all functions;
    66
    7 #pragma link C++ class MObservatoryLocation+;
    8 #pragma link C++ class MVPObject+;
    9 #pragma link C++ class MVPPlotter+;
    10 #pragma link C++ class MVPTime+;
  • trunk/MagicSoft/Mars/mtemp/mifae/Makefile

    r3916 r3927  
    2323
    2424PROGRAMS = makeHillas psffit
    25 SOLIB    = ../../libmars.so
    26 LIB      = mifae.a
     25#SOLIB    = ../../libmars.so
     26#LIB      = mifae.a
    2727
    2828#------------------------------------------------------------------------------
     
    4848
    4949
    50 .SUFFIXES: .c .cc .h .o
     50#.SUFFIXES: .c .cc .h .o
    5151
    5252SRCFILES = \
     
    5757#       MSrcRotate.cc
    5858
    59 SRCS    = $(SRCFILES)
    60 HEADERS = $(SRCFILES:.cc=.h)
    61 OBJS    = $(SRCFILES:.cc=.o)
     59#SRCS    = $(SRCFILES)
     60#HEADERS = $(SRCFILES:.cc=.h)
     61#OBJS    = $(SRCFILES:.cc=.o)
    6262
    6363############################################################
    6464#all: $(LIB) $(PROGRAMS)
    65 all: $(LIB)
     65all: $(OBJS)
    6666        @echo " Done. "
    6767        @echo " "
  • trunk/MagicSoft/Mars/mtools/Makefile

    r3331 r3927  
    99include ../Makefile.conf.general
    1010
     11#------------------------------------------------------------------------------
     12
    1113#
    1214# Handling name of the Root Dictionary Files
    1315#
    1416CINT  = Tools
    15 
    16 #
    17 # Library name to creatre
    18 #
    19 LIB   = mtools.a
    2017
    2118#
     
    2623
    2724#manalysis: MChisqEval (MParameters)
    28 
    29 #------------------------------------------------------------------------------
    30 
    31 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3225
    3326SRCFILES = MChisqEval.cc \
     
    4538           MineSweeper.cc
    4639
    47 
    48 SRCS    = $(SRCFILES)
    49 HEADERS = $(SRCFILES:.cc=.h)
    50 OBJS    = $(SRCFILES:.cc=.o)
    51 
    5240############################################################
    5341
    54 all: $(LIB)
     42all: $(OBJS)
    5543
    5644include ../Makefile.rules
    5745
    58 #clean: rmcint rmobjs rmcore rmlib
    59 
    6046mrproper:       clean rmbak
    61 
    62 # @endcode
    63 
  • trunk/MagicSoft/include-Classes/MMcFormat/Makefile

    r2800 r3927  
    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#------------------------------------------------------------------------------
    2112
    2213INCLUDES = -I.  -I../mbase -I../MBase -I../mgeom
    2314
    24 # @code
    25 
    2615CINT     = Mc
    27 LIB      = mmc.a
    28 
    29 #------------------------------------------------------------------------------
    30 
    31 .SUFFIXES: .c .cc .cxx .h .hxx .o
    3216
    3317SRCFILES = MMcTrigHeader.cxx \
     
    3519           MMcRunHeader.cxx \
    3620           MMcEvt.cxx \
    37            MMcTrig.cxx
    38 
    39 SRCFILESCC = MMcConfigRunHeader.cc \
    40              MMcCorsikaRunHeader.cc
    41 
    42 
    43 SRCS    = $(SRCFILES)
    44 
    45 HEADERS = $(SRCFILES:.cxx=.hxx) $(SRCFILESCC:.cc=.h)
    46 OBJS    = $(SRCFILES:.cxx=.o) $(SRCFILESCC:.cc=.o)
     21           MMcTrig.cxx \
     22           MMcConfigRunHeader.cc \
     23           MMcCorsikaRunHeader.cc
    4724
    4825############################################################
    4926
    50 all: $(LIB)
     27all: $(OBJS)
    5128
    5229include ../Makefile.rules
    5330
    54 #clean: rmcint rmobjs rmcore rmlib
    55 
    5631mrproper:       clean rmbak
    57 
    58 # @endcode
Note: See TracChangeset for help on using the changeset viewer.