Fork me on GitHub

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/genMakefile.tcl

    r71efbfe r748ce07  
    225225endif
    226226
    227 
    228 # check consistency
    229 ifneq ($(PROMC),)
    230   ifneq ($(PROIO),)
    231   $(error Attention:  PROMC and PROIO env. variables are set simultaneously. You cannot compile ProMC and ProIO readers in one compilation process due to an inconsistency in protocol buffers libraries. The suggestion is to compile these two readers in two steps. First unset PROIO variable and then \"configure; make\". After this, unset PROMC, set PROIO,  and run \"configure; make\". During runs, make sure shared libraries are set correctly. )
    232   endif
    233 endif
    234 
    235 
    236227ifneq ($(PROMC),)
    237228HAS_PROMC = true
    238 $(info ProMC event reader is requested)
    239229CXXFLAGS += -I$(PROMC)/include -I$(PROMC)/src
    240230OPT_LIBS += -L$(PROMC)/lib -lpromc -lprotoc -lprotobuf -lprotobuf-lite -lcbook -lz
    241 endif
    242 
    243 ifneq ($(PROIO),)
    244 HAS_PROIO = true
    245 $(info ProIO reader is requested)
    246        ifeq ($(PROTOBUF),)
    247        $(error but PROTOBUF variable is not set.)
    248        endif
    249 
    250        PROTOBUF_FILE=$(PROTOBUF)/lib/libprotobuf.a
    251        ifeq ("$(wildcard $(PROTOBUF_FILE))","")
    252           $(error PROTOBUF variable is set, but it does not point to valid $(PROTOBUF_FILE))
    253        endif
    254 
    255        ifeq ($(LZ4),)
    256             $(error but LZ4 variable is not set.)                       
    257        endif
    258        LZ4_FILE=$(LZ4)/lib/liblz4.so
    259        ifeq ("$(wildcard $(LZ4_FILE))","")
    260             $(error LZ4 variable is set,  but it  does not point to valid $(LZ4_FILE))
    261        endif
    262 
    263 
    264 CXXFLAGS += -I$(PROIO)/include -I$(PROTOBUF)/include -I$(LZ4)/include -I$(PROIO)/src
    265 OPT_LIBS += -L$(PROTOBUF)/lib -lprotobuf -L$(PROIO)/lib -lproio -lproio.pb -lz -L$(LZ4)/lib -llz4
    266231endif
    267232
     
    307272puts {ifeq ($(HAS_PROMC),true)}
    308273executableDeps {readers/DelphesProMC.cpp}
    309 puts {endif}
    310 puts {}
    311 
    312 puts {ifeq ($(HAS_PROIO),true)}
    313 executableDeps {readers/DelphesProIO.cpp}
    314274puts {endif}
    315275puts {}
Note: See TracChangeset for help on using the changeset viewer.