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) 2000-2001 Silicon Graphics, Inc.  All rights reserved.
  7. #
  8. TOPDIR=../../../..
  9. HPATH           = $(TOPDIR)/include
  10. LIB     = ../../lib/lib.a
  11. OBJ=fpromasm.o main.o  fw-emu.o fpmem.o klgraph_init.o
  12. obj-y=fprom
  13. fprom: $(OBJ)
  14. $(LD) -static -Tfprom.lds -o fprom $(OBJ) $(LIB)
  15. .S.o:
  16. $(CC)  -D__ASSEMBLY__ $(AFLAGS) $(AFLAGS_KERNEL) -c -o $*.o $<
  17. .c.o:
  18. $(CC)  $(CFLAGS) $(CFLAGS_KERNEL) -c -o $*.o $<
  19. clean:
  20. rm -f *.o fprom
  21. include $(TOPDIR)/Rules.make