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

Linux/Unix编程

开发平台:

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) $(AFLAGS) -traditional -c $< -o $*.o
  11. all: asm-offsets.h 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.    exec32.o
  15. obj-y := entry.o bitmap.o traps.o time.o process.o irq.o 
  16.    setup.o sys_s390.o ptrace.o signal.o cpcmd.o ebcdic.o 
  17.    semaphore.o s390fpu.o reipl.o s390_ext.o debug.o
  18. obj-$(CONFIG_MODULES) += s390_ksyms.o
  19. obj-$(CONFIG_SMP) += smp.o
  20. #
  21. # Kernel debugging
  22. #
  23. obj-$(CONFIG_REMOTE_DEBUG) += gdb-stub.o #gdb-low.o 
  24. obj-$(CONFIG_S390_SUPPORT) += linux32.o signal32.o ioctl32.o wrapper32.o exec32.o
  25. obj-$(CONFIG_BINFMT_ELF32) += binfmt_elf32.o
  26. .PHONY: asm-offsets.h
  27. entry.S: asm-offsets.h
  28. #
  29. # This is just to get the dependencies...
  30. #
  31. binfmt_elf32.o: $(TOPDIR)/fs/binfmt_elf.c
  32. #
  33. # Automatic offset generation for assembler files.
  34. #
  35. asm-offsets.h: asm-offsets.c
  36. $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -S $< -o - | grep -- "->" | 
  37. (echo "#ifndef __ASM_OFFSETS_H__"; 
  38.  echo "#define __ASM_OFFSETS_H__"; 
  39.  echo "/*"; 
  40.  echo " * DO NOT MODIFY"; 
  41.  echo " *"; 
  42.  echo " * This file was generated by arch/s390/kernel/Makefile"; 
  43.  echo " */"; 
  44.  sed -e "s:^->([^ ]*) ([^ ]*) (.*):#define \1 \2 /* \3*/:" 
  45.      -e "s:->::"; 
  46.  echo "#endif" 
  47. ) > asm-offsets.h
  48. clean:
  49. rm -f asm-offsets.h
  50. include $(TOPDIR)/Rules.make