Makefile
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. # $Id: Makefile,v 1.4 1997/12/15 20:08:56 ecd Exp $
  2. # Makefile for the Sparc64 boot stuff.
  3. #
  4. # Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  5. # Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  6. ROOT_IMG =/usr/src/root.img
  7. ELFTOAOUT =elftoaout
  8. all: boot
  9. boot:
  10. @echo "Nothing special to be done for 'boot' on Linux/UltraSPARC."
  11. tftpboot.img: piggyback $(TOPDIR)/vmlinux $(ROOT_IMG)
  12. $(ELFTOAOUT) $(TOPDIR)/vmlinux -o tftpboot.img
  13. ./piggyback tftpboot.img $(TOPDIR)/System.map $(ROOT_IMG)
  14. piggyback: piggyback.c
  15. $(HOSTCC) $(HOSTCFLAGS) -o piggyback piggyback.c
  16. dep: