Makefile (f9cd49033b349b8be3bb1f01b39eed837853d880) | Makefile (c78f77e20d2ba5d4d5e478e85a6fb42556893e2d) |
---|---|
1# Makefile for the Sparc boot stuff. 2# 3# Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) 4# Copyright (C) 1997,1998 Jakub Jelinek (jj@ultra.linux.cz) 5 6ROOT_IMG := /usr/src/root.img 7ELFTOAOUT := elftoaout 8 --- 55 unchanged lines hidden (view full) --- 64 65$(obj)/image: vmlinux FORCE 66 $(call if_changed,strip) 67 @echo ' kernel: $@ is ready' 68 69$(obj)/tftpboot.img: $(obj)/image $(obj)/piggyback System.map $(ROOT_IMG) FORCE 70 $(call if_changed,elftoaout) 71 $(call if_changed,piggy) | 1# Makefile for the Sparc boot stuff. 2# 3# Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) 4# Copyright (C) 1997,1998 Jakub Jelinek (jj@ultra.linux.cz) 5 6ROOT_IMG := /usr/src/root.img 7ELFTOAOUT := elftoaout 8 --- 55 unchanged lines hidden (view full) --- 64 65$(obj)/image: vmlinux FORCE 66 $(call if_changed,strip) 67 @echo ' kernel: $@ is ready' 68 69$(obj)/tftpboot.img: $(obj)/image $(obj)/piggyback System.map $(ROOT_IMG) FORCE 70 $(call if_changed,elftoaout) 71 $(call if_changed,piggy) |
72 73install: 74 sh $(srctree)/$(src)/install.sh $(KERNELRELEASE) $(obj)/zImage \ 75 System.map "$(INSTALL_PATH)" |
|