Makefile.lib (7eb19553369c46cc1fa64caf120cbcab1b597f7c) | Makefile.lib (bc22c17e12c130dc929218a95aa347e0f3fd05dc) |
---|---|
1# Backward compatibility 2asflags-y += $(EXTRA_AFLAGS) 3ccflags-y += $(EXTRA_CFLAGS) 4cppflags-y += $(EXTRA_CPPFLAGS) 5ldflags-y += $(EXTRA_LDFLAGS) 6 7# Figure out what we need to build from the various variables 8# =========================================================================== --- 172 unchanged lines hidden (view full) --- 181 182# Gzip 183# --------------------------------------------------------------------------- 184 185quiet_cmd_gzip = GZIP $@ 186cmd_gzip = gzip -f -9 < $< > $@ 187 188 | 1# Backward compatibility 2asflags-y += $(EXTRA_AFLAGS) 3ccflags-y += $(EXTRA_CFLAGS) 4cppflags-y += $(EXTRA_CPPFLAGS) 5ldflags-y += $(EXTRA_LDFLAGS) 6 7# Figure out what we need to build from the various variables 8# =========================================================================== --- 172 unchanged lines hidden (view full) --- 181 182# Gzip 183# --------------------------------------------------------------------------- 184 185quiet_cmd_gzip = GZIP $@ 186cmd_gzip = gzip -f -9 < $< > $@ 187 188 |
189# Bzip2 190# --------------------------------------------------------------------------- 191 192# Bzip2 does not include size in file... so we have to fake that 193size_append=$(CONFIG_SHELL) $(srctree)/scripts/bin_size 194 195quiet_cmd_bzip2 = BZIP2 $@ 196cmd_bzip2 = (bzip2 -9 < $< ; $(size_append) $<) > $@ || (rm -f $@ ; false) 197 198# Lzma 199# --------------------------------------------------------------------------- 200 201quiet_cmd_lzma = LZMA $@ 202cmd_lzma = (lzma -9 -c $< ; $(size_append) $<) >$@ || (rm -f $@ ; false) |
|