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

嵌入式Linux

开发平台:

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 Silicon Graphics, Inc.
  7. # Copyright (C) Jack Steiner (steiner@sgi.com)
  8. #
  9. TOPDIR=../../../..
  10. HPATH           = $(TOPDIR)/include
  11. LIB     = ../../lib/lib.a
  12. OBJ=fpromasm.o main.o  fw-emu.o fpmem.o
  13. obj-y=fprom
  14. fprom: $(OBJ)
  15. $(LD) -static -Tfprom.lds -o fprom $(OBJ) $(LIB)
  16. comma := ,
  17. .S.o:
  18. $(CC)  -D__ASSEMBLY__ $(AFLAGS) $(AFLAGS_KERNEL) -c -o $*.o $<
  19. .c.o:
  20. $(CC)  $(CFLAGS) -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) $(CFLAGS_KERNEL) -c -o $*.o $<
  21. clean:
  22. rm -f *.o fprom
  23. include $(TOPDIR)/Rules.make