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

嵌入式Linux

开发平台:

Unix_Linux

  1. # s390/Makefile
  2. #
  3. # This file is included by the global makefile so that you can add your own
  4. # architecture-specific flags and dependencies. Remember to do have actions
  5. # for "archclean" and "archdep" for cleaning up and making dependencies for
  6. # this architecture
  7. #
  8. # This file is subject to the terms and conditions of the GNU General Public
  9. # License.  See the file "COPYING" in the main directory of this archive
  10. # for more details.
  11. #
  12. # Copyright (C) 1994 by Linus Torvalds
  13. #
  14. LD=$(CROSS_COMPILE)ld -m elf64_s390
  15. CPP=$(CC) -E
  16. OBJCOPY=$(CROSS_COMPILE)objcopy -O binary -R .note -R .comment -S
  17. LDFLAGS=-e start
  18. ifeq ($(CONFIG_SHARED_KERNEL),y)
  19. LINKFLAGS =-T $(TOPDIR)/arch/s390x/vmlinux-shared.lds $(LDFLAGS)
  20. else
  21. LINKFLAGS =-T $(TOPDIR)/arch/s390x/vmlinux.lds $(LDFLAGS)
  22. endif
  23. MODFLAGS += -fpic
  24. CFLAGS_PIPE := -pipe
  25. CFLAGS_NSR  := -fno-strength-reduce
  26. CFLAGS := $(CFLAGS) $(CFLAGS_PIPE) $(CFLAGS_NSR)
  27. HEAD := arch/s390x/kernel/head.o arch/s390x/kernel/init_task.o
  28. SUBDIRS := $(SUBDIRS) arch/s390x/mm arch/s390x/kernel arch/s390x/lib 
  29.            drivers/s390
  30. CORE_FILES := arch/s390x/mm/mm.o arch/s390x/kernel/kernel.o $(CORE_FILES)
  31. DRIVERS := $(DRIVERS) drivers/s390/io.o
  32. LIBS := $(TOPDIR)/arch/s390x/lib/lib.a $(LIBS) $(TOPDIR)/arch/s390x/lib/lib.a
  33. all: image listing
  34. listing: vmlinux
  35. @$(MAKEBOOT) listing
  36. arch/s390x/kernel: dummy
  37. $(MAKE) linuxsubdirs SUBDIRS=arch/s390x/kernel
  38. arch/s390x/mm: dummy
  39. $(MAKE) linuxsubdirs SUBDIRS=arch/s390x/mm
  40. drivers/s390: dummy
  41. $(MAKE) linuxsubdirs SUBDIRS=drivers/s390
  42. MAKEBOOT = $(MAKE) -C arch/$(ARCH)/boot
  43. image: vmlinux 
  44. @$(MAKEBOOT) image
  45. install: vmlinux
  46. @$(MAKEBOOT) BOOTIMAGE=image install
  47. archclean:
  48. @$(MAKEBOOT) clean
  49. archmrproper:
  50. archdep:
  51. @$(MAKEBOOT) dep