search for: quiet_cmd_ln

Displaying 3 results from an estimated 3 matches for "quiet_cmd_ln".

Did you mean: quiet_cmd_ld
2005 Jul 31
0
[patch] kbuild: build all targets in gzip
...cripts/Kbuild.klibc --- a/scripts/Kbuild.klibc +++ b/scripts/Kbuild.klibc @@ -263,6 +263,16 @@ quiet_cmd_userld = USERLD $@ $(filter-out FORCE,$^) -o $@ +# Link target to a new name +# --------------------------------------------------------------------------- +quiet_cmd_ln = LN $@ + cmd_ln = rm -f $@ && ln $< $@ + +# Strip target (remove all debugging info) +quiet_cmd_strip = STRIP $@ + cmd_strip = $(USERSTRIP) $(USERSTRIPFLAGS) $< -o $@ + + # Read all saved command lines and dependencies for the $(targets) we # may be building above...
2006 Jun 26
0
[klibc 19/43] klibc basic build infrastructure
...cmd_klibcld = $(KLIBCLD) -r $(KLIBCLDFLAGS) \ + $(EXTRA_KLIBCLDFLAGS) $(KLIBCLDFLAGS_$(@F)) \ + $(filter-out FORCE,$^) -o $@ + + +# Link target to a new name +# --------------------------------------------------------------------------- +quiet_cmd_ln = LN $@ + cmd_ln = rm -f $@ && ln $< $@ + +# Strip target (remove all debugging info) +quiet_cmd_strip = STRIP $@ + cmd_strip = $(KLIBCSTRIP) $(KLIBCSTRIPFLAGS) $< -o $@ + + +# Read all saved command lines and dependencies for the $(targets) we +# may be building abov...
2006 Jun 28
35
[klibc 00/31] klibc as a historyless patchset (updated and reorganized)
I have updated the klibc patchset based on feedback received. In particular, the patchset has been reorganized so as not to break git-bisect. Additionally, this updates the patch base to 2.6.17-git12 (d38b69689c349f35502b92e20dafb30c62d49d63) and klibc 1.4.8; the main difference on the klibc side is removal of obsolete code. This is also available as a git tree at: