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

嵌入式Linux

开发平台:

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 mksimage mknote piggyback mkpmon mkbugboot
  11. $(UTILS):
  12. $(HOSTCC) $(HOSTCFLAGS) -o $@ $@.c
  13. clean:
  14. rm -f $(UTILS)
  15. include $(TOPDIR)/Rules.make