use $^ and specify config-{no,}debug in the dependencies

no functional change
This commit is contained in:
Kyle McMartin 2014-01-21 17:16:04 -05:00
parent e1e0f7695f
commit 63afba2414
1 changed files with 4 additions and 4 deletions

View File

@ -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 $^ > $@