Changes in doc/genMakefile.tcl [910bd98:71eba5e] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/genMakefile.tcl
r910bd98 r71eba5e 346 346 @mkdir -p $(@D) 347 347 @echo ">> Building $@" 348 ifeq ($(ARCH),aix5) 349 @$(MAKESHARED) $(OutPutOpt) $@ $(DELPHES_LIBS) -p 0 $^ 350 else 348 351 ifeq ($(PLATFORM),macosx) 352 # We need to make both the .dylib and the .so 349 353 @$(LD) $(SOFLAGS)$@ $(LDFLAGS) $^ $(OutPutOpt) $@ $(DELPHES_LIBS) 354 ifneq ($(subst $(MACOSX_MINOR),,1234),1234) 355 ifeq ($(MACOSX_MINOR),4) 356 @ln -sf $@ $(subst .$(DllSuf),.so,$@) 357 endif 358 endif 350 359 else 351 360 ifeq ($(PLATFORM),win32) … … 356 365 else 357 366 @$(LD) $(SOFLAGS) $(LDFLAGS) $^ $(OutPutOpt) $@ $(DELPHES_LIBS) 367 @$(MT_DLL) 368 endif 358 369 endif 359 370 endif … … 362 373 @mkdir -p $(@D) 363 374 @echo ">> Building $@" 375 ifeq ($(ARCH),aix5) 376 @$(MAKESHARED) $(OutPutOpt) $@ $(DELPHES_LIBS) -p 0 $^ 377 else 364 378 ifeq ($(PLATFORM),macosx) 379 # We need to make both the .dylib and the .so 365 380 @$(LD) $(SOFLAGS)$@ $(LDFLAGS) $^ $(OutPutOpt) $@ $(DELPHES_LIBS) 381 ifneq ($(subst $(MACOSX_MINOR),,1234),1234) 382 ifeq ($(MACOSX_MINOR),4) 383 @ln -sf $@ $(subst .$(DllSuf),.so,$@) 384 endif 385 endif 366 386 else 367 387 ifeq ($(PLATFORM),win32) … … 372 392 else 373 393 @$(LD) $(SOFLAGS) $(LDFLAGS) $^ $(OutPutOpt) $@ $(DELPHES_LIBS) 394 @$(MT_DLL) 395 endif 374 396 endif 375 397 endif … … 378 400 @mkdir -p $(@D) 379 401 @echo ">> Building $@" 402 ifeq ($(ARCH),aix5) 403 @$(MAKESHARED) $(OutPutOpt) $@ $(DISPLAY_LIBS) -p 0 $^ 404 else 380 405 ifeq ($(PLATFORM),macosx) 406 # We need to make both the .dylib and the .so 381 407 @$(LD) $(SOFLAGS)$@ $(LDFLAGS) $^ $(OutPutOpt) $@ $(DISPLAY_LIBS) 408 ifneq ($(subst $(MACOSX_MINOR),,1234),1234) 409 ifeq ($(MACOSX_MINOR),4) 410 @ln -sf $@ $(subst .$(DllSuf),.so,$@) 411 endif 412 endif 382 413 else 383 414 ifeq ($(PLATFORM),win32) … … 388 419 else 389 420 @$(LD) $(SOFLAGS) $(LDFLAGS) $^ $(OutPutOpt) $@ $(DISPLAY_LIBS) 421 @$(MT_DLL) 422 endif 390 423 endif 391 424 endif
Note:
See TracChangeset
for help on using the changeset viewer.