[SPARC32]: Fix build dependencies for vmlinux.o
Linux Kernel Mailing List <[email protected]> Wed, 16 Mar 2005 18:50:52 +0000
| Newsgroups | gmane.linux.kernel.commits.2-4 |
|---|---|
| Message-ID | <[email protected]> |
ChangeSet 1.1560.1.5, 2005/03/16 10:50:52-08:00, [email protected] [SPARC32]: Fix build dependencies for vmlinux.o This helps make parallel builds work properly. Signed-off-by: David S. Miller <[email protected]> Makefile | 1 + boot/Makefile | 13 ++++++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff -Nru a/arch/sparc/Makefile b/arch/sparc/Makefile --- a/arch/sparc/Makefile 2005-03-16 15:02:49 -08:00 +++ b/arch/sparc/Makefile 2005-03-16 15:02:49 -08:00 @@ -45,6 +45,7 @@ $(TOPDIR)/arch/sparc/lib/lib.a # This one has to come last +_dir_arch/sparc/boot : $(patsubst %, _dir_%, $(SUBDIRS)) SUBDIRS += arch/sparc/boot CORE_FILES_NO_BTFIX := $(CORE_FILES) CORE_FILES += arch/sparc/boot/btfix.o diff -Nru a/arch/sparc/boot/Makefile b/arch/sparc/boot/Makefile --- a/arch/sparc/boot/Makefile 2005-03-16 15:02:49 -08:00 +++ b/arch/sparc/boot/Makefile 2005-03-16 15:02:49 -08:00 @@ -26,11 +26,14 @@ BTLIBS := $(CORE_FILES_NO_BTFIX) $(FILESYSTEMS) \ $(DRIVERS) $(NETWORKS) -# I wanted to make this depend upon BTOBJS so that a parallel -# build would work, but this fails because $(HEAD) cannot work -# properly as it will cause head.o to be built with the implicit -# rules not the ones in kernel/Makefile. Someone please fix. --DaveM -vmlinux.o: dummy +GENFILES := include/linux/version.h include/linux/compile.h $(foreach dirname, $(CORE_FILES_NO_BTFIX), _dir_$(dir $(dirname))) +.PHONY : $(GENFILES) +GENFILES += $(BTOBJS) + +$(GENFILES): + $(MAKE) -C $(TOPDIR) $@ + +vmlinux.o: $(GENFILES) $(LD) -r $(patsubst %,$(TOPDIR)/%,$(BTOBJS)) \ --start-group \ $(patsubst %,$(TOPDIR)/%,$(BTLIBS)) \