Changeset 578 for trunk/src/emx/mklib.smak
- Timestamp:
- Aug 11, 2003, 1:45:40 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/mklib.smak
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r577 r578 2 2 # For a list of additional variables that can be defined prior to including 3 3 # this submakefile see build.txt. 4 5 # for opt builds we have our own install rules 6 ifeq ($(findstring prof,$(.TKIND)),) 7 ifneq ($(findstring aout,$(.TKIND)),) 8 ifeq ($(MODE),opt) 9 .NOINST := 1 10 endif 11 endif 12 endif 4 13 5 14 include common.smak … … 12 21 $(call FECHO,_@, $$(DO.LIBRARY))$(NL) 13 22 23 # Rule for stripping debug info. 24 ifdef .NOINST 25 INS.FILES += $(INS)$(.INSDIR)$(.TARGET) 26 $(INS)$(.INSDIR)$(.TARGET): $.$(.TARG) 27 objcopy --strip-debug $< $@ 28 29 INS.FILES += $(INS)$(.INSDIR)dbg/$(.TARGET) 30 $(INS)$(.INSDIR)dbg/$(.TARGET): $.$(.TARG) 31 mkdir -p $(INS)$(.INSDIR)dbg 32 $(call CP,$<,$@) 33 endif 34 14 35 include mkomflib.smak 15 36 include comend.smak 37 .NOINST := 38 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.