Makefile
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # arch/sh/boot/Makefile
  3. #
  4. # This file is subject to the terms and conditions of the GNU General Public
  5. # License.  See the file "COPYING" in the main directory of this archive
  6. # for more details.
  7. #
  8. # Copyright (C) 1999 Stuart Menefy
  9. #
  10. SYSTEM  =$(TOPDIR)/vmlinux
  11. Image: $(CONFIGURE) $(SYSTEM)
  12. $(OBJCOPY) $(SYSTEM) Image
  13. zImage: $(CONFIGURE) compressed/vmlinux
  14. $(OBJCOPY) compressed/vmlinux zImage
  15. compressed/vmlinux: $(TOPDIR)/vmlinux
  16. $(MAKE) -C compressed vmlinux
  17. install: $(CONFIGURE) Image
  18. sh -x ./install.sh $(KERNELRELEASE) Image $(TOPDIR)/System.map "$(INSTALL_PATH)"
  19. zinstall: $(CONFIGURE) zImage
  20. sh -x ./install.sh $(KERNELRELEASE) zImage $(TOPDIR)/System.map "$(INSTALL_PATH)"
  21. dep:
  22. clean:
  23. rm -f tools/build
  24. rm -f setup bootsect zImage compressed/vmlinux.out
  25. rm -f bsetup bbootsect bzImage compressed/bvmlinux.out
  26. @$(MAKE) -C compressed clean