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

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the linux s390-specific parts of the memory manager.
  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 definition is now in the main makefile...
  9. OBJCOPY = $(CROSS_COMPILE)objcopy
  10. O_TARGET := 
  11. include $(TOPDIR)/Rules.make
  12. .S.o:
  13. $(CC) -D__ASSEMBLY__ $(AFLAGS) -traditional -c $< -o $*.o
  14. %.lnk: %.o
  15. $(LD) -Ttext 0x0 -o $@ $<
  16. %.boot: %.lnk
  17. $(OBJCOPY) -O binary $< $@
  18. image: $(CONFIGURE) $(TOPDIR)/vmlinux 
  19. iplfba.boot ipleckd.boot ipldump.boot
  20. $(OBJCOPY) -O binary $(TOPDIR)/vmlinux image
  21. $(NM) $(TOPDIR)/vmlinux | grep -v '(compiled)|( [aUw] )|(.)|(LASH[RL]DI)' | sort > $(TOPDIR)/System.map
  22. listing: ../../../vmlinux
  23. $(OBJDUMP) --disassemble --disassemble-all --disassemble-zeroes --reloc $(TOPDIR)/vmlinux > listing
  24. dep:
  25. clean:
  26. rm -f image listing iplfba.boot ipleckd.boot ipldump.boot
  27. install: $(CONFIGURE) $(BOOTIMAGE)
  28. sh -x ./install.sh $(KERNELRELEASE) $(BOOTIMAGE) $(TOPDIR)/System.map $(TOPDIR)/Kerntypes "$(INSTALL_PATH)"