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:
archmrproper:
archdep:
@$(MAKEBOOT) dep
......@@ -7,8 +7,6 @@ zImage: compressed/vmlinuz
compressed/vmlinuz: $(TOPDIR)/vmlinux
@$(MAKE) -C compressed vmlinuz
dep:
clean:
rm -f zImage tools/build compressed/vmlinux.out
@$(MAKE) -C compressed clean
......@@ -142,4 +142,3 @@ archclean:
archmrproper:
archdep:
@$(MAKEBOOT) dep
......@@ -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
$(CPP) $(CPPFLAGS) -D__BIG_KERNEL__ -D__ASSEMBLY__ -traditional $(SVGA_MODE) $(RAMDISK) $< -o $@
dep:
clean:
@echo 'Cleaning up (boot)'
@rm -f tools/build
......
......@@ -128,7 +128,6 @@ archmrproper:
@$(MAKE) -C arch/$(ARCH)/tools mrproper
archdep:
@$(MAKEBOOT) dep
bootpfile:
@$(MAKEBOOT) bootpfile
......@@ -23,5 +23,3 @@ bootloader: $(OBJECTS)
clean:
rm -f $(TARGETS)
dep:
......@@ -310,7 +310,3 @@ archmrproper:
$(MAKE) -C arch/$(ARCH)/tools mrproper
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
addinitrd: addinitrd.c
$(HOSTCC) -o $@ $^
# Don't build dependencies, this may die if $(CC) isn't gcc
dep:
clean:
rm -f vmlinux.ecoff
rm -f zImage zImage.tmp
......
......@@ -178,7 +178,3 @@ archmrproper:
$(MAKE) -C arch/$(ARCH)/tools mrproper
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
addinitrd: addinitrd.c
$(HOSTCC) -o $@ $^
# Don't build dependencies, this may die if $(CC) isn't gcc
dep:
clean:
rm -f vmlinux.ecoff
......
......@@ -59,7 +59,6 @@ archclean:
archmrproper:
archdep:
@$(MAKEBOOT) dep
install: vmlinux
@$(MAKEBOOT) BOOTIMAGE=image install
......@@ -22,8 +22,6 @@ image: $(TOPDIR)/vmlinux \
listing: ../../../vmlinux
$(OBJDUMP) --disassemble --disassemble-all --disassemble-zeroes --reloc $(TOPDIR)/vmlinux > listing
dep:
clean:
rm -f image listing iplfba.boot ipleckd.boot ipldump.boot
......
......@@ -58,4 +58,3 @@ archclean:
archmrproper:
archdep:
@$(MAKEBOOT) dep
......@@ -24,8 +24,6 @@ image: $(TOPDIR)/vmlinux \
listing: ../../../vmlinux
$(OBJDUMP) --disassemble --disassemble-all --disassemble-zeroes --reloc $(TOPDIR)/vmlinux > listing
dep:
clean:
rm -f image listing iplfba.boot ipleckd.boot ipldump.boot
......
......@@ -96,4 +96,3 @@ archmrproper:
rm -f arch/sh/vmlinux.lds
archdep:
@$(MAKEBOOT) dep
......@@ -25,8 +25,6 @@ install: Image
zinstall: zImage
sh -x ./install.sh $(KERNELRELEASE) zImage $(TOPDIR)/System.map "$(INSTALL_PATH)"
dep:
clean:
rm -f tools/build
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