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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #   Makefile for Quicknet Linux Drivers 
  2. #   Version 0.3.5 1/28/2000
  3. #
  4. #    This program is free software; you can redistribute it and/or
  5. #    modify it under the terms of the GNU General Public License
  6. #    as published by the Free Software Foundation; either version
  7. #    2 of the License, or (at your option) any later version.
  8. #    Authors:   Greg Herlein <gherlein@quicknet.net>
  9. # Ed Okerson <eokerson@quicknet.net>    
  10. #
  11. VER:=$(shell uname -r)
  12. KERNEL_DIR:=/usr/src/linux
  13. include $(KERNEL_DIR)/.config
  14. MODFLAGS:=
  15. #
  16. # Comment/uncomment the following line to enable/disable debugging
  17. #DEBUG = y
  18. #
  19. # Change it here or specify it on the "make" commandline
  20. INCLUDEDIR = /usr/include
  21. #
  22. ifeq ($(DEBUG),y)
  23.   DEBFLAGS = -O -g -DIXJ_DEBUG
  24. else
  25.   DEBFLAGS = -O2
  26. endif
  27. #
  28. ifdef CONFIG_MODVERSIONS
  29. MODFLAGS += -DMODVERSIONS -include $(KERNEL_DIR)/include/linux/modversions.h
  30. endif
  31. #
  32. CFLAGS = -D__KERNEL__ -DMODULE -Wall $(DEBFLAGS) $(MODFLAGS) -I$(INCLUDEDIR)
  33. #
  34. all: ixj-pnp
  35. #
  36. ?:
  37. @echo -e "nnChoose either "make ixj-pnp" (for isapnp support) 
  38. nor "make ixj-manual (manual card configuration required)nor 
  39. make ixj-cs (for CardService PCMCIA support)neither will install the 
  40. modules after they are builtnn"
  41. headers-install:
  42. install -c telephony.h /usr/src/linux/include/linux/
  43. install -c ixjuser.h /usr/src/linux/include/linux/
  44. install -c phonedev.h /usr/src/linux/include/linux/
  45. ixj-pnp: headers-install phonedev.o isapnp ixj-w-isapnp install
  46. ixj-manual: headers-install phonedev.o ixj-wo-isapnp install
  47. ixj-cs: headers-install phonedev.o ixj_cs install_cs
  48. ixj_cs : ixj.c ixj.h ixjuser.h
  49. ${CC} ${CFLAGS} -o ixj_cs.o -c ixj.c -DCONFIG_PCMCIA
  50. ixj-w-isapnp : ixj.c ixj.h ixjuser.h
  51. ${CC} ${CFLAGS} -o ixj.o -c ixj.c -DCONFIG_ISAPNP
  52. ixj-wo-isapnp : ixj.c ixj.h ixjuser.h
  53. ${CC} ${CFLAGS} -o ixj.o -c ixj.c 
  54. phonedev.o: phonedev.c phonedev.h
  55. ${CC} ${CFLAGS} -DEXPORT_SYMTAB -o $@ -c phonedev.c
  56. isapnp : ../isapnp/isapnp.o
  57. (cd ../isapnp ; ${MAKE} ; ${MAKE} install )
  58. install:
  59. (./phone_dev_create)
  60. mkdir -p /lib/modules/$(VER)/misc /lib/modules/misc
  61. install -c phonedev.o /lib/modules/$(VER)/misc
  62. install -c ixj.o /lib/modules/$(VER)/misc
  63. depmod -av
  64. install_cs:
  65. (./phone_dev_create)
  66. mkdir -p /lib/modules/$(VER)/misc /lib/modules/misc
  67. install -c ixj_cs.o /lib/modules/$(VER)/pcmcia
  68. install -c phonedev.o /lib/modules/$(VER)/misc
  69. depmod -a
  70. clean:
  71. (cd ../isapnp ; ${MAKE} clean)
  72. rm -f *.o *~ core