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

嵌入式Linux

开发平台:

Unix_Linux

  1. # $Id: Makefile,v 1.9 2001/10/22 13:10:21 pkj Exp $
  2. #
  3. # Makefile for the linux kernel.
  4. #
  5. # Note! Dependencies are done automagically by 'make dep', which also
  6. # removes any old dependencies. DON'T put your own dependencies here
  7. # unless it's something special (ie not a .c file).
  8. #
  9. # Note 2! The CFLAGS definitions are now in the main makefile...
  10. # These assembly files can't be assembld with -traditional, so we
  11. # need another build rule than the one in the toplevel Makefile.
  12. .S.o:
  13. $(CC) $(AFLAGS) -c $< -o $*.o
  14. all: kernel.o head.o
  15. O_TARGET := kernel.o
  16. export-objs := ksyms.o
  17. obj-y   := process.o signal.o entry.o traps.o irq.o 
  18.            ptrace.o setup.o time.o sys_cris.o shadows.o 
  19.    debugport.o semaphore.o
  20. obj-$(CONFIG_MODULES)    += ksyms.o
  21. obj-$(CONFIG_ETRAX_KGDB) += kgdb.o
  22. # This dependency isn't caught by mkdep.  See entry.S.
  23. entry.o: entryoffsets.s
  24. entryoffsets.s: entryoffsets.c
  25. $(CC) $(CFLAGS) -S -c $<
  26. clean:
  27. include $(TOPDIR)/Rules.make