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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #   Makefile for Quicknet Linux Drivers 
  2. #   Version 0.3.4 12/20/99
  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. #
  13. # Comment/uncomment the following line to enable/disable debugging
  14. #DEBUG = y
  15. #
  16. # Change it here or specify it on the "make" commandline
  17. INCLUDEDIR = /usr/include
  18. #
  19. ifeq ($(DEBUG),y)
  20.   DEBFLAGS = -O -g -DIXJ_DEBUG
  21. else
  22.   DEBFLAGS = -O2
  23. endif
  24. #
  25. CFLAGS = -D__KERNEL__ -DMODULE -Wall $(DEBFLAGS) -I$(INCLUDEDIR)
  26. #
  27. all: ixj-pnp
  28. # @echo -e "nnChoose either "make ixj-pnp" (for isapnp support) nor "make ixj-manual (manual card configuration required)neither will install the modules after they are builtnn"
  29. headers-install:
  30. install -c telephony.h /usr/src/linux/include/linux/
  31. install -c ixjuser.h /usr/src/linux/include/linux/
  32. # ixj-pnp: headers-install phonedev.o isapnp ixj-w-isapnp isapnp install
  33. ixj-pnp: phonedev.o isapnp ixj-w-isapnp isapnp install
  34. ixj-manual: headers-install phonedev.o ixj-wo-isapnp install
  35. ixj-w-isapnp : ixj.c ixj.h ixjuser.h
  36. ${CC} ${CFLAGS} -o ixj.o -c ixj.c -DCONFIG_ISAPNP
  37. ixj-wo-isapnp : ixj.c ixj.h ixjuser.h
  38. ${CC} ${CFLAGS} -o ixj.o -c ixj.c 
  39. phonedev.o: phonedev.c phonedev.h
  40. ${CC} ${CFLAGS} -DEXPORT_SYMTAB -o $@ -c phonedev.c
  41. isapnp : isapnp/isapnp.o
  42. ( cd isapnp ; ${MAKE} ; ${MAKE} install )
  43. install:
  44. (./phone_dev_create)
  45. mkdir -p /lib/modules/$(VER)/misc /lib/modules/misc
  46. install -c ixj.o /lib/modules/$(VER)/misc
  47. install -c phonedev.o /lib/modules/$(VER)/misc
  48. depmod -av
  49. clean:
  50. rm -f *.o *~ core