Makefile.old
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #
  2. # Makefile for the kernel Plug-and-Play device drivers.
  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 inherited from the
  9. # parent makes..
  10. SUB_DIRS     := 
  11. MOD_SUB_DIRS := $(SUB_DIRS)
  12. ALL_SUB_DIRS := $(SUB_DIRS)
  13. L_TARGET := pnp.a
  14. MX_OBJS  :=
  15. LX_OBJS  := 
  16. MI_OBJS  :=
  17. MIX_OBJS :=
  18. ifeq ($(CONFIG_ISAPNP),y)
  19.   LX_OBJS += isapnp.o
  20. else
  21.   ifeq ($(CONFIG_ISAPNP),m)
  22.     MX_OBJS += isapnp.o
  23.   endif
  24. endif
  25. include $(TOPDIR)/Rules.make