From 63afba24144493f58a6848b516ffac27ffc4e89f Mon Sep 17 00:00:00 2001 From: Kyle McMartin Date: Tue, 21 Jan 2014 17:16:04 -0500 Subject: [PATCH] use $^ and specify config-{no,}debug in the dependencies no functional change --- Makefile.config | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.config b/Makefile.config index 31f82a4b4..806c56766 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 $^ > $@