Commit e464bfbe authored by Kai Germaschewski's avatar Kai Germaschewski

kbuild: Remove dead "make dep" commands.

These didn't have any associated rules, so they can as well just go.
parent 19485cff
...@@ -102,4 +102,3 @@ archclean: ...@@ -102,4 +102,3 @@ archclean:
archmrproper: archmrproper:
archdep: archdep:
@$(MAKEBOOT) dep
...@@ -7,8 +7,6 @@ zImage: compressed/vmlinuz ...@@ -7,8 +7,6 @@ zImage: compressed/vmlinuz
compressed/vmlinuz: $(TOPDIR)/vmlinux compressed/vmlinuz: $(TOPDIR)/vmlinux
@$(MAKE) -C compressed vmlinuz @$(MAKE) -C compressed vmlinuz
dep:
clean: clean:
rm -f zImage tools/build compressed/vmlinux.out rm -f zImage tools/build compressed/vmlinux.out
@$(MAKE) -C compressed clean @$(MAKE) -C compressed clean
...@@ -142,4 +142,3 @@ archclean: ...@@ -142,4 +142,3 @@ archclean:
archmrproper: archmrproper:
archdep: archdep:
@$(MAKEBOOT) dep
...@@ -97,8 +97,6 @@ bsetup.o: bsetup.s ...@@ -97,8 +97,6 @@ bsetup.o: bsetup.s
bsetup.s: setup.S video.S Makefile $(BOOT_INCL) $(TOPDIR)/include/linux/version.h $(TOPDIR)/include/linux/compile.h bsetup.s: setup.S video.S Makefile $(BOOT_INCL) $(TOPDIR)/include/linux/version.h $(TOPDIR)/include/linux/compile.h
$(CPP) $(CPPFLAGS) -D__BIG_KERNEL__ -D__ASSEMBLY__ -traditional $(SVGA_MODE) $(RAMDISK) $< -o $@ $(CPP) $(CPPFLAGS) -D__BIG_KERNEL__ -D__ASSEMBLY__ -traditional $(SVGA_MODE) $(RAMDISK) $< -o $@
dep:
clean: clean:
@echo 'Cleaning up (boot)' @echo 'Cleaning up (boot)'
@rm -f tools/build @rm -f tools/build
......
...@@ -128,7 +128,6 @@ archmrproper: ...@@ -128,7 +128,6 @@ archmrproper:
@$(MAKE) -C arch/$(ARCH)/tools mrproper @$(MAKE) -C arch/$(ARCH)/tools mrproper
archdep: archdep:
@$(MAKEBOOT) dep
bootpfile: bootpfile:
@$(MAKEBOOT) bootpfile @$(MAKEBOOT) bootpfile
...@@ -23,5 +23,3 @@ bootloader: $(OBJECTS) ...@@ -23,5 +23,3 @@ bootloader: $(OBJECTS)
clean: clean:
rm -f $(TARGETS) rm -f $(TARGETS)
dep:
...@@ -310,7 +310,3 @@ archmrproper: ...@@ -310,7 +310,3 @@ archmrproper:
$(MAKE) -C arch/$(ARCH)/tools mrproper $(MAKE) -C arch/$(ARCH)/tools mrproper
archdep: archdep:
if [ ! -f $(TOPDIR)/include/asm-$(ARCH)/offset.h ]; then \
touch $(TOPDIR)/include/asm-$(ARCH)/offset.h; \
fi;
@$(MAKEBOOT) dep
...@@ -35,9 +35,6 @@ elf2ecoff: elf2ecoff.c ...@@ -35,9 +35,6 @@ elf2ecoff: elf2ecoff.c
addinitrd: addinitrd.c addinitrd: addinitrd.c
$(HOSTCC) -o $@ $^ $(HOSTCC) -o $@ $^
# Don't build dependencies, this may die if $(CC) isn't gcc
dep:
clean: clean:
rm -f vmlinux.ecoff rm -f vmlinux.ecoff
rm -f zImage zImage.tmp rm -f zImage zImage.tmp
......
...@@ -178,7 +178,3 @@ archmrproper: ...@@ -178,7 +178,3 @@ archmrproper:
$(MAKE) -C arch/$(ARCH)/tools mrproper $(MAKE) -C arch/$(ARCH)/tools mrproper
archdep: archdep:
if [ ! -f $(TOPDIR)/include/asm-$(ARCH)/offset.h ]; then \
touch $(TOPDIR)/include/asm-$(ARCH)/offset.h; \
fi;
@$(MAKEBOOT) dep
...@@ -26,9 +26,6 @@ elf2ecoff: elf2ecoff.c ...@@ -26,9 +26,6 @@ elf2ecoff: elf2ecoff.c
addinitrd: addinitrd.c addinitrd: addinitrd.c
$(HOSTCC) -o $@ $^ $(HOSTCC) -o $@ $^
# Don't build dependencies, this may die if $(CC) isn't gcc
dep:
clean: clean:
rm -f vmlinux.ecoff rm -f vmlinux.ecoff
......
...@@ -59,7 +59,6 @@ archclean: ...@@ -59,7 +59,6 @@ archclean:
archmrproper: archmrproper:
archdep: archdep:
@$(MAKEBOOT) dep
install: vmlinux install: vmlinux
@$(MAKEBOOT) BOOTIMAGE=image install @$(MAKEBOOT) BOOTIMAGE=image install
...@@ -22,8 +22,6 @@ image: $(TOPDIR)/vmlinux \ ...@@ -22,8 +22,6 @@ image: $(TOPDIR)/vmlinux \
listing: ../../../vmlinux listing: ../../../vmlinux
$(OBJDUMP) --disassemble --disassemble-all --disassemble-zeroes --reloc $(TOPDIR)/vmlinux > listing $(OBJDUMP) --disassemble --disassemble-all --disassemble-zeroes --reloc $(TOPDIR)/vmlinux > listing
dep:
clean: clean:
rm -f image listing iplfba.boot ipleckd.boot ipldump.boot rm -f image listing iplfba.boot ipleckd.boot ipldump.boot
......
...@@ -58,4 +58,3 @@ archclean: ...@@ -58,4 +58,3 @@ archclean:
archmrproper: archmrproper:
archdep: archdep:
@$(MAKEBOOT) dep
...@@ -24,8 +24,6 @@ image: $(TOPDIR)/vmlinux \ ...@@ -24,8 +24,6 @@ image: $(TOPDIR)/vmlinux \
listing: ../../../vmlinux listing: ../../../vmlinux
$(OBJDUMP) --disassemble --disassemble-all --disassemble-zeroes --reloc $(TOPDIR)/vmlinux > listing $(OBJDUMP) --disassemble --disassemble-all --disassemble-zeroes --reloc $(TOPDIR)/vmlinux > listing
dep:
clean: clean:
rm -f image listing iplfba.boot ipleckd.boot ipldump.boot rm -f image listing iplfba.boot ipleckd.boot ipldump.boot
......
...@@ -96,4 +96,3 @@ archmrproper: ...@@ -96,4 +96,3 @@ archmrproper:
rm -f arch/sh/vmlinux.lds rm -f arch/sh/vmlinux.lds
archdep: archdep:
@$(MAKEBOOT) dep
...@@ -25,8 +25,6 @@ install: Image ...@@ -25,8 +25,6 @@ install: Image
zinstall: zImage zinstall: zImage
sh -x ./install.sh $(KERNELRELEASE) zImage $(TOPDIR)/System.map "$(INSTALL_PATH)" sh -x ./install.sh $(KERNELRELEASE) zImage $(TOPDIR)/System.map "$(INSTALL_PATH)"
dep:
clean: clean:
rm -f tools/build rm -f tools/build
rm -f setup bootsect zImage compressed/vmlinux.out rm -f setup bootsect zImage compressed/vmlinux.out
......
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