Makefile
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. # $Id: Makefile,v 1.10 2002/05/27 15:41:40 johana 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. obj-$(CONFIG_ETRAX_FAST_TIMER) += fasttimer.o
  23. # This dependency isn't caught by mkdep.  See entry.S.
  24. entry.o: entryoffsets.s
  25. entryoffsets.s: entryoffsets.c
  26. $(CC) $(CFLAGS) -S -c $<
  27. clean:
  28. include $(TOPDIR)/Rules.make