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

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the linux kernel.
  3. #
  4. # Note! Dependencies are done automagically by 'make dep', which also
  5. # removes any old dependencies. DON'T put your own dependencies here
  6. # unless it's something special (ie not a .c file).
  7. #
  8. # Note 2! The CFLAGS definitions are now in the main makefile...
  9. .S.o:
  10. $(CC) -D__ASSEMBLY__ $(AFLAGS) -traditional -c $< -o $*.o
  11. all: kernel.o head.o init_task.o
  12. O_TARGET := kernel.o
  13. export-objs := debug.o ebcdic.o irq.o s390_ext.o smp.o s390_ksyms.o
  14. obj-y := entry.o bitmap.o traps.o time.o process.o irq.o 
  15.             setup.o sys_s390.o ptrace.o signal.o cpcmd.o ebcdic.o 
  16.             semaphore.o s390fpu.o reipl.o s390_ext.o debug.o
  17. obj-$(CONFIG_MODULES) += s390_ksyms.o
  18. obj-$(CONFIG_SMP) += smp.o
  19. #
  20. # Kernel debugging
  21. #
  22. obj-$(CONFIG_REMOTE_DEBUG) += gdb-stub.o #gdb-low.o 
  23. include $(TOPDIR)/Rules.make