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

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # arch/ppc/boot/common/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. # Tom Rini January 2001
  9. #
  10. .c.s:
  11. $(CC) $(CFLAGS) -S -o $*.s $<
  12. .s.o:
  13. $(AS) -o $*.o $<
  14. .c.o:
  15. $(CC) $(CFLAGS) -c -o $*.o $<
  16. .S.s:
  17. $(CPP) $(AFLAGS) -traditional -o $*.o $<
  18. .S.o:
  19. $(CC) $(AFLAGS) -traditional -c -o $*.o $<
  20. OBJCOPY_ARGS = -O elf32-powerpc
  21. coffcrt0.o:
  22. $(CC) $(AFLAGS) -DXCOFF -traditional -c -o coffcrt0.o crt0.S
  23. include $(TOPDIR)/Rules.make