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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # This file is subject to the terms and conditions of the GNU General Public
  3. # License.  See the file "COPYING" in the main directory of this archive
  4. # for more details.
  5. #
  6. # Copyright (C) 1995, 1998, 1999 by Ralf Baechle
  7. #
  8. USE_STANDARD_AS_RULE := true
  9. #
  10. # Some DECstations need all possible sections of an ECOFF executable
  11. #
  12. ifdef CONFIG_DECSTATION
  13.   E2EFLAGS = -a
  14. else
  15.   E2EFLAGS =
  16. endif
  17. all: vmlinux.ecoff addinitrd
  18. vmlinux.ecoff: $(CONFIGURE) elf2ecoff $(TOPDIR)/vmlinux
  19. ./elf2ecoff $(TOPDIR)/vmlinux vmlinux.ecoff $(E2EFLAGS)
  20. elf2ecoff: elf2ecoff.c
  21. $(HOSTCC) -o $@ $^
  22. addinitrd: addinitrd.c
  23. $(HOSTCC) -o $@ $^
  24. # Don't build dependencies, this may die if $(CC) isn't gcc
  25. dep:
  26. clean:
  27. rm -f vmlinux.ecoff
  28. mrproper:
  29. rm -f vmlinux.ecoff addinitrd elf2ecoff
  30. dummy:
  31. include $(TOPDIR)/Rules.make