Changeset 482
- Timestamp:
- Jan 28, 2010, 5:44:18 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/mkspecs/features/os2/default_pre.prf
r400 r482 88 88 !isEmpty(LIBS):export(LIBS) 89 89 !isEmpty(PRL_EXPORT_LIBS):export(PRL_EXPORT_LIBS) 90 90 91 91 QMAKE_LIBDIR *= $(DESTDIR) 92 92 export(QMAKE_LIBDIR) 93 93 94 # add the pre-link stepfor all but the last part94 # add the for all but the last part 95 95 next = $$member(rest) 96 96 !isEmpty(next) { … … 98 98 equals(next, "."):next = 99 99 else:next = "-"$${lower($$next)} 100 CONFIG(release, debug|release):bld = release 101 else:bld = debug 102 eval(QMAKE_PRE_LINK = $(MAKE) $${bld}$${next}) 100 CONFIG(release, debug|release):tgt = release$${next} 101 else:tgt = debug$${next} 103 102 } else { 104 equals(next, "."):next = Part 105 else:next = Part$${next} 106 eval(QMAKE_PRE_LINK = $(MAKE) $${next}) 103 equals(next, "."):tgt = Part 104 else:tgt = Part$${next} 107 105 } 108 export(QMAKE_PRE_LINK) 106 eval(ALL_DEPS += $${tgt}) 107 export(ALL_DEPS) 108 109 target_dep.target = $${tgt} 110 target_dep.commands = $(MAKE) $${tgt} 111 QMAKE_EXTRA_TARGETS += target_dep 112 113 export(target_dep.target) 114 export(target_dep.commands) 115 export(QMAKE_EXTRA_TARGETS) 109 116 } 110 117
Note:
See TracChangeset
for help on using the changeset viewer.