Commit 47afa1d5 authored by WANG Cong's avatar WANG Cong Committed by Linus Torvalds

uml: remove TOPDIR

TOPDIR is obsolete, use srctree instead.  This patch removes TOPDIR from all
UML Makefiles.

Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: default avatarWANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: default avatarJeff Dike <jdike@linux.intel.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent d449c503
...@@ -160,7 +160,7 @@ ifneq ($(KBUILD_SRC),) ...@@ -160,7 +160,7 @@ ifneq ($(KBUILD_SRC),)
$(Q)mkdir -p $(objtree)/include/asm-um $(Q)mkdir -p $(objtree)/include/asm-um
$(Q)ln -fsn $(srctree)/include/asm-um/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@ $(Q)ln -fsn $(srctree)/include/asm-um/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@
else else
$(Q)cd $(TOPDIR)/$(dir $@) ; \ $(Q)cd $(srctree)/$(dir $@) ; \
ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $(notdir $@) ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $(notdir $@)
endif endif
...@@ -170,7 +170,7 @@ ifneq ($(KBUILD_SRC),) ...@@ -170,7 +170,7 @@ ifneq ($(KBUILD_SRC),)
$(Q)mkdir -p $(objtree)/include/asm-um $(Q)mkdir -p $(objtree)/include/asm-um
$(Q)ln -fsn $(srctree)/include/asm-$(HEADER_ARCH) include/asm-um/arch $(Q)ln -fsn $(srctree)/include/asm-$(HEADER_ARCH) include/asm-um/arch
else else
$(Q)cd $(TOPDIR)/include/asm-um && ln -fsn ../asm-$(HEADER_ARCH) arch $(Q)cd $(srctree)/include/asm-um && ln -fsn ../asm-$(HEADER_ARCH) arch
endif endif
$(objtree)/$(ARCH_DIR)/include: $(objtree)/$(ARCH_DIR)/include:
......
...@@ -6,7 +6,7 @@ OBJ = built-in.o ...@@ -6,7 +6,7 @@ OBJ = built-in.o
OBJS = ptrace.o sigcontext.o semaphore.o checksum.o miscthings.o misc.o \ OBJS = ptrace.o sigcontext.o semaphore.o checksum.o miscthings.o misc.o \
ptrace_user.o sysrq.o ptrace_user.o sysrq.o
EXTRA_AFLAGS := -DCONFIG_PPC32 -I. -I$(TOPDIR)/arch/ppc/kernel EXTRA_AFLAGS := -DCONFIG_PPC32 -I. -I$(srctree)/arch/ppc/kernel
all: $(OBJ) all: $(OBJ)
...@@ -22,25 +22,25 @@ sigcontext.o: sigcontext.c ...@@ -22,25 +22,25 @@ sigcontext.o: sigcontext.c
semaphore.c: semaphore.c:
rm -f $@ rm -f $@
ln -s $(TOPDIR)/arch/ppc/kernel/$@ $@ ln -s $(srctree)/arch/ppc/kernel/$@ $@
checksum.S: checksum.S:
rm -f $@ rm -f $@
ln -s $(TOPDIR)/arch/ppc/lib/$@ $@ ln -s $(srctree)/arch/ppc/lib/$@ $@
mk_defs.c: mk_defs.c:
rm -f $@ rm -f $@
ln -s $(TOPDIR)/arch/ppc/kernel/$@ $@ ln -s $(srctree)/arch/ppc/kernel/$@ $@
ppc_defs.head: ppc_defs.head:
rm -f $@ rm -f $@
ln -s $(TOPDIR)/arch/ppc/kernel/$@ $@ ln -s $(srctree)/arch/ppc/kernel/$@ $@
ppc_defs.h: mk_defs.c ppc_defs.head \ ppc_defs.h: mk_defs.c ppc_defs.head \
$(TOPDIR)/include/asm-ppc/mmu.h \ $(srctree)/include/asm-ppc/mmu.h \
$(TOPDIR)/include/asm-ppc/processor.h \ $(srctree)/include/asm-ppc/processor.h \
$(TOPDIR)/include/asm-ppc/pgtable.h \ $(srctree)/include/asm-ppc/pgtable.h \
$(TOPDIR)/include/asm-ppc/ptrace.h $(srctree)/include/asm-ppc/ptrace.h
# $(CC) $(CFLAGS) -S mk_defs.c # $(CC) $(CFLAGS) -S mk_defs.c
cp ppc_defs.head ppc_defs.h cp ppc_defs.head ppc_defs.h
# for bk, this way we can write to the file even if it's not checked out # for bk, this way we can write to the file even if it's not checked out
...@@ -56,13 +56,13 @@ ppc_defs.h: mk_defs.c ppc_defs.head \ ...@@ -56,13 +56,13 @@ ppc_defs.h: mk_defs.c ppc_defs.head \
checksum.o: checksum.S checksum.o: checksum.S
rm -f asm rm -f asm
ln -s $(TOPDIR)/include/asm-ppc asm ln -s $(srctree)/include/asm-ppc asm
$(CC) $(EXTRA_AFLAGS) $(KBUILD_AFLAGS) -D__ASSEMBLY__ -D__UM_PPC__ -c $< -o $*.o $(CC) $(EXTRA_AFLAGS) $(KBUILD_AFLAGS) -D__ASSEMBLY__ -D__UM_PPC__ -c $< -o $*.o
rm -f asm rm -f asm
misc.o: misc.S ppc_defs.h misc.o: misc.S ppc_defs.h
rm -f asm rm -f asm
ln -s $(TOPDIR)/include/asm-ppc asm ln -s $(srctree)/include/asm-ppc asm
$(CC) $(EXTRA_AFLAGS) $(KBUILD_AFLAGS) -D__ASSEMBLY__ -D__UM_PPC__ -c $< -o $*.o $(CC) $(EXTRA_AFLAGS) $(KBUILD_AFLAGS) -D__ASSEMBLY__ -D__UM_PPC__ -c $< -o $*.o
rm -f asm rm -f asm
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment