summaryrefslogtreecommitdiffstats
path: root/Makefile.config
diff options
context:
space:
mode:
authorKyle McMartin <kyle@fedoraproject.org>2014-01-21 17:16:04 -0500
committerKyle McMartin <kyle@fedoraproject.org>2014-01-21 17:16:04 -0500
commit63afba24144493f58a6848b516ffac27ffc4e89f (patch)
tree00bbb18698aa0fe93c95e76939b834b10dbc57b7 /Makefile.config
parente1e0f7695f48a4902dca468296a1516a0624a0a6 (diff)
downloadkernel-63afba24144493f58a6848b516ffac27ffc4e89f.tar.gz
kernel-63afba24144493f58a6848b516ffac27ffc4e89f.tar.xz
kernel-63afba24144493f58a6848b516ffac27ffc4e89f.zip
use $^ and specify config-{no,}debug in the dependencies
no functional change
Diffstat (limited to 'Makefile.config')
-rw-r--r--Makefile.config8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.config b/Makefile.config
index 31f82a4b..806c5676 100644
--- a/Makefile.config
+++ b/Makefile.config
@@ -26,11 +26,11 @@ configs: $(CONFIGFILES)
clean ::
@rm -fv $(CONFIGFILES) $(TEMPFILES) temp-generic kernel-$(VERSION)*config
-temp-generic: config-generic
- cat config-generic config-nodebug > temp-generic
+temp-generic: config-generic config-nodebug
+ cat $^ > temp-generic
-temp-debug-generic: config-generic
- cat config-generic config-debug > temp-debug-generic
+temp-debug-generic: config-generic config-debug
+ cat $^ > temp-debug-generic
temp-no-extra-generic: config-no-extra temp-generic
perl merge.pl $^ > $@