Fork me on GitHub

Changeset d870fc5 in git for doc/genMakefile.tcl


Ignore:
Timestamp:
Dec 21, 2014, 4:03:35 PM (10 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
d77b51d
Parents:
7f12612 (diff), e5767b57 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge remote-tracking branch 'upstream/master'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/genMakefile.tcl

    r7f12612 rd870fc5  
    5757  global prefix suffix srcSuf objSuf pcmSuf
    5858
    59   set dict [eval glob -nocomplain $args]
     59  set dict [lsort [eval glob -nocomplain $args]]
    6060
    6161  set dictSrcFiles {}
     
    9191  global prefix suffix srcSuf objSuf
    9292
    93   set source [eval glob -nocomplain $args]
     93  set source [lsort [eval glob -nocomplain $args]]
    9494
    9595  set srcObjFiles {}
     
    127127  global prefix suffix srcSuf objSuf
    128128
    129   set source [glob -nocomplain {external/tcl/*.c}]
     129  set source [lsort [glob -nocomplain {external/tcl/*.c}]]
    130130
    131131  set srcObjFiles {}
     
    151151  global prefix suffix objSuf exeSuf
    152152
    153   set executable [eval glob -nocomplain $args]
     153  set executable [lsort [eval glob -nocomplain $args]]
    154154
    155155  set exeFiles {}
     
    229229
    230230ifneq ($(PYTHIA8),)
    231 HAS_PYTHIA8 = true
    232 CXXFLAGS += -I$(PYTHIA8)/include
    233 OPT_LIBS += -L$(PYTHIA8)/lib -lpythia8 -lLHAPDF -lgfortran -lz
    234 else
    235 ifneq ($(PYTHIA8DATA),)
    236 HAS_PYTHIA8 = true
    237 CXXFLAGS += -I$(PYTHIA8DATA)/../include
    238 OPT_LIBS += -L$(PYTHIA8DATA)/../lib -lpythia8 -lLHAPDF -lgfortran -lz
    239 endif
     231#HAS_PYTHIA8 = true
     232#CXXFLAGS += -I$(PYTHIA8)/include
     233#CXXFLAGS += -I$(PYTHIA8)/include/Pythia8
     234#OPT_LIBS += -L$(PYTHIA8)/lib -lpythia8 -ldl
    240235endif
    241236
     
    401396        @echo ">> Building $(DISTTAR)"
    402397        @mkdir -p $(DISTDIR)
    403         @cp -a CHANGELOG CREDITS README VERSION Makefile configure classes converters display doc examples external modules python readers $(DISTDIR)
     398        @cp -a CHANGELOG COPYING CREDITS README VERSION Makefile configure cards classes converters display doc examples external modules python readers $(DISTDIR)
    404399        @find $(DISTDIR) -depth -name .\* -exec rm -rf {} \;
    405400        @tar -czf $(DISTTAR) $(DISTDIR)
Note: See TracChangeset for help on using the changeset viewer.