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

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Makefile for MIPS kernel build tools.
  3. #
  4. # Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  5. # Copyright (C) 1997, 1999 Ralf Baechle (ralf@gnu.org)
  6. # Copyright (C) 1999 Silicon Graphics, Inc.
  7. #
  8. TARGET := $(TOPDIR)/include/asm-$(ARCH)/offset.h
  9. .S.s:
  10. $(CPP) $(CFLAGS) $< -o $*.s
  11. .S.o:
  12. $(CC) $(CFLAGS) -c $< -o $*.o
  13. $(TARGET): offset.h
  14. cmp -s $^ $@ || (cp $^ $(TARGET).new && mv $(TARGET).new $(TARGET))
  15. offset.h: offset.s
  16. sed -n '/^@@@/s///p' $^ >$@
  17. offset.s: offset.c $(TOPDIR)/include/linux/autoconf.h
  18. clean:
  19. rm -f offset.[hs] $(TARGET).new
  20. mrproper:
  21. rm -f offset.[hs] $(TARGET).new
  22. rm -f $(TARGET)
  23. include $(TOPDIR)/Rules.make