diff options
author | Kyle McMartin <kyle@redhat.com> | 2011-10-26 14:38:50 -0400 |
---|---|---|
committer | Kyle McMartin <kyle@redhat.com> | 2011-10-26 14:38:50 -0400 |
commit | 76f169673caa73b98a1f5c10a6065885d36d5dce (patch) | |
tree | b7995980766928b9bf3fc116a33dbf5fd18d8b6a /Makefile | |
parent | bf30a40f01d94083370238be8bd603f5644fe357 (diff) | |
download | kernel-76f169673caa73b98a1f5c10a6065885d36d5dce.tar.gz kernel-76f169673caa73b98a1f5c10a6065885d36d5dce.tar.xz kernel-76f169673caa73b98a1f5c10a6065885d36d5dce.zip |
Make 'make local' do something helpful
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -20,6 +20,13 @@ include Makefile.config prep: fedpkg -v prep --arch=$(PREPARCH) +noarch: + fedpkg -v local --arch=noarch + +# 'make local' also needs to build the noarch firmware package +local: noarch + fedpkg -v local + extremedebug: @perl -pi -e 's/# CONFIG_DEBUG_PAGEALLOC is not set/CONFIG_DEBUG_PAGEALLOC=y/' config-nodebug @@ -109,9 +116,6 @@ include Makefile.release unused-kernel-patches: @for f in *.patch; do if [ -e $$f ]; then (egrep -q "^Patch[[:digit:]]+:[[:space:]]+$$f" $(SPECFILE) || echo "Unused: $$f") && egrep -q "^ApplyPatch[[:space:]]+$$f|^ApplyOptionalPatch[[:space:]]+$$f" $(SPECFILE) || echo "Unapplied: $$f"; fi; done -# 'make local' also needs to build the noarch firmware package -local: noarch - # # Hacks for building vanilla (unpatched) kernel rpms. # Use "make vanilla-TARGET" like "make TARGET" (make vanilla-scratch-build). |