From: Kenn H. <ke...@us...> - 2003-02-16 19:08:29
|
Update of /cvsroot/linux-vax/kernel-2.5 In directory sc8-pr-cvs1:/tmp/cvs-serv28234 Modified Files: Makefile Log Message: Merge with 2.5.36 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Makefile,v retrieving revision 1.42 retrieving revision 1.43 diff -u -r1.42 -r1.43 --- Makefile 16 Feb 2003 01:05:23 -0000 1.42 +++ Makefile 16 Feb 2003 19:07:55 -0000 1.43 @@ -1,6 +1,6 @@ VERSION = 2 PATCHLEVEL = 5 -SUBLEVEL = 35 +SUBLEVEL = 36 EXTRAVERSION = # *DOCUMENTATION* @@ -297,7 +297,9 @@ $(NM) vmlinux | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | sort > System.map endef -vmlinux: $(vmlinux-objs) FORCE +LDFLAGS_vmlinux += -T arch/$(ARCH)/vmlinux.lds.s + +vmlinux: $(vmlinux-objs) arch/$(ARCH)/vmlinux.lds.s FORCE $(call if_changed_rule,link_vmlinux) # The actual objects are generated when descending, @@ -323,7 +325,7 @@ AFLAGS_vmlinux.lds.o += -P -C -U$(ARCH) -arch/$(ARCH)/vmlinux.lds.s: arch/$(ARCH)/vmlinux.lds.S FORCE +arch/$(ARCH)/vmlinux.lds.s: arch/$(ARCH)/vmlinux.lds.S scripts FORCE $(call if_changed_dep,as_s_S) targets += arch/$(ARCH)/vmlinux.lds.s @@ -788,6 +790,7 @@ # FIXME Should go into a make.lib or something # =========================================================================== +echo_target = $(RELDIR)/$@ a_flags = -Wp,-MD,$(depfile) $(AFLAGS) $(NOSTDINC_FLAGS) \ $(modkern_aflags) $(EXTRA_AFLAGS) $(AFLAGS_$(*F).o) |