Changeset 578
- Timestamp:
- Aug 11, 2003, 1:45:40 PM (22 years ago)
- Location:
- trunk/src/emx
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/common.smak
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r577 r578 37 37 38 38 ifdef .INSDIR 39 ifndef .NOINST 39 40 INS.FILES += $(INS)$(.INSDIR)$(.TARGET) 40 41 $(INS)$(.INSDIR)$(.TARGET): $.$(.TARG) 41 42 $(call CP,$<,$@) 43 endif 42 44 endif # def .INSDIR 43 45 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/mkdll.smak
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r577 r578 22 22 endif 23 23 endif 24 25 # Map file. 26 ifdef .TARGET 27 ifneq ($(.TARGET),$(.TARGET:.exe=.map)) 28 INS.FILES += $(INS)$(.INSDIR)$(.TARGET:.exe=.map) 29 $(INS)$(.INSDIR)$(.TARGET:.exe=.map): $.$(.TARG:.exe=.map) 30 $(call CP,$<,$@) 31 endif 32 endif 24 33 25 34 include comend.smak -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/mkexe.smak
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r577 r578 22 22 endif 23 23 endif 24 25 # Map file. 26 ifdef .TARGET 27 ifneq ($(.TARGET),$(.TARGET:.exe=.map)) 28 INS.FILES += $(INS)$(.INSDIR)$(.TARGET:.exe=.map) 29 $(INS)$(.INSDIR)$(.TARGET:.exe=.map): $.$(.TARG:.exe=.map) 30 $(call CP,$<,$@) 31 endif 32 endif 33 24 34 25 35 include comend.smak -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/mkimplib.smak
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r577 r578 3 3 # this submakefile see build.txt. 4 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 13 5 14 include common.smak 6 15 … … 12 21 $(call FECHO,_@, $$(call DO.IMPLIB))$(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 := -
Property cvs2svn:cvs-rev
changed from
-
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.