Changeset 982 in svn for trunk/genMakefile.tcl
- Timestamp:
- Feb 26, 2013, 4:51:44 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/genMakefile.tcl
r742 r982 209 209 # 210 210 211 -include $(ROOTSYS)/etc/Makefile.arch 212 -include $(ROOTSYS)/test/Makefile.arch 211 include Makefile.arch 213 212 214 213 ifeq ($(ARCH),macosx64) 215 214 UNDEFOPT = dynamic_lookup 216 215 endif 217 218 216 219 217 ifneq (,$(findstring macos,$(ARCH))) … … 227 225 endif 228 226 229 230 227 SrcSuf = cc 231 228 … … 237 234 ### 238 235 239 #SHARED = lib/libUtilities.$(DllSuf) lib/libHector.$(DllSuf)240 236 SHARED = lib/libUtilities.$(DllSuf) 237 SHAREDLIB = lib/libUtilities.lib 238 241 239 VERSION=$(shell cat VERSION) 242 240 FOLDER=Delphes_V_$(VERSION) … … 274 272 ifeq ($(PLATFORM),macosx) 275 273 # We need to make both the .dylib and the .so 276 @$(LD) $(SOFLAGS)$@ $(LDFLAGS) $^ $(OutPutOpt) $@ $( EXPLLINKLIBS)274 @$(LD) $(SOFLAGS)$@ $(LDFLAGS) $^ $(OutPutOpt) $@ $(LIBS) 277 275 ifneq ($(subst $(MACOSX_MINOR),,1234),1234) 278 276 ifeq ($(MACOSX_MINOR),4) … … 283 281 ifeq ($(PLATFORM),win32) 284 282 @bindexplib $* $^ > $*.def 285 @lib -nologo -MACHINE:IX86 $^ -def:$*.def $(OutPutOpt)$( EVENTLIB)283 @lib -nologo -MACHINE:IX86 $^ -def:$*.def $(OutPutOpt)$(SHAREDLIB) 286 284 @$(LD) $(SOFLAGS) $(LDFLAGS) $^ $*.exp $(LIBS) $(OutPutOpt)$@ 287 285 @$(MT_DLL) 288 286 else 289 @$(LD) $(SOFLAGS) $(LDFLAGS) $^ $(OutPutOpt) $@ $( EXPLLINKLIBS)287 @$(LD) $(SOFLAGS) $(LDFLAGS) $^ $(OutPutOpt) $@ $(LIBS) 290 288 @$(MT_DLL) 291 289 endif
Note:
See TracChangeset
for help on using the changeset viewer.