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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # arch/ppc/boot/utils/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. HOSTCFLAGS += -I$(TOPDIR)/arch/$(ARCH)/boot/include
  8. all: dummy
  9. # Simple programs with 1 file and no extra CFLAGS
  10. UTILS = addnote hack-coff mkprep mknote mktree
  11. $(UTILS):
  12. $(HOSTCC) $(HOSTCFLAGS) -o $@ $@.c
  13. clean:
  14. rm -f $(UTILS)
  15. include $(TOPDIR)/Rules.make