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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the linux reiser-filesystem routines.
  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. O_TARGET := reiserfs.o
  10. obj-y   := bitmap.o do_balan.o namei.o inode.o file.o dir.o fix_node.o super.o prints.o objectid.o 
  11. lbalance.o ibalance.o stree.o hashes.o buffer2.o tail_conversion.o journal.o resize.o version.o item_ops.o ioctl.o procfs.o
  12. obj-m   := $(O_TARGET)
  13. # gcc -O2 (the kernel default)  is overaggressive on ppc32 when many inline
  14. # functions are used.  This causes the compiler to advance the stack
  15. # pointer out of the available stack space, corrupting kernel space,
  16. # and causing a panic. Since this behavior only affects ppc32, this ifeq
  17. # will work around it. If any other architecture displays this behavior,
  18. # add it here.
  19. ifeq ($(CONFIG_PPC32),y)
  20. EXTRA_CFLAGS := -O1
  21. endif
  22. include $(TOPDIR)/Rules.make
  23. TAGS:
  24. etags *.c