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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. # $Id: Makefile,v 1.16 2000/03/29 02:55:21 jeff Exp $
  2. # $Log: Makefile,v $
  3. # Revision 1.16  2000/03/29 02:55:21  jeff
  4. # upgraded to version ixj-0.3.18-gl
  5. #
  6. # Revision 1.15  2000/03/01 23:36:31  bogawa
  7. # fix for solaris?
  8. #
  9. # Revision 1.14  2000/02/18 21:50:55  ctam
  10. # Change to use new driver.
  11. #
  12. # File:  Makefile
  13. #
  14. # Revision 1.13  2000/01/21 14:34:17  ctam
  15. # Revert back to using version 1.39 quicknet drivers.
  16. #
  17. # Modified Files:  Makefile
  18. #
  19. # Revision 1.12  2000/01/07 23:00:32  bogawa
  20. # fix
  21. #
  22. # Revision 1.11  2000/01/07 22:51:27  ctam
  23. # Change Makefile to use latest from quicknet (ixj-0.3.4a-gpl)
  24. #
  25. # Modified Files:  Makefile
  26. #
  27. # Revision 1.10  1999/10/08 20:32:14  devel
  28. #
  29. # changes for compiling on SGI.
  30. #
  31. # Revision 1.9.4.2  1999/09/15 00:57:10  bogawa
  32. # merge in chok's new agent code
  33. #
  34. # Revision 1.9.4.1  1999/09/15 00:24:16  bogawa
  35. # merge in cheung's changes and changes to compile under sgi
  36. #
  37. # Revision 1.9  1999/08/25 20:50:55  bogawa
  38. # New makefiles offer more flexibility (e.g. targets that let you select
  39. # what you intend to make) as well as a packaging structure.
  40. #
  41. # Revision 1.8  1999/08/05 21:37:38  luan
  42. # Change the make file to use driver ixj-0.1.39
  43. #
  44. # Revision 1.7  1999/07/16 01:22:48  bogawa
  45. #
  46. # fix.
  47. #
  48. # Revision 1.6  1999/07/16 01:18:15  bogawa
  49. #
  50. # fix for new 0.1.35 quicknet drivers
  51. #
  52. # Revision 1.5  1999/06/29 20:05:56  bogawa
  53. #
  54. # Change to ixj 0.1.27
  55. #
  56. # Revision 1.4  1999/06/29 01:24:58  bogawa
  57. #
  58. # Update to ixj-0.1.30
  59. #
  60. # Revision 1.3  1999/06/28 21:41:31  bogawa
  61. #
  62. # more make file fixes
  63. #
  64. # Revision 1.2  1999/06/09 04:09:04  bogawa
  65. #
  66. # This makefile now correctly does diving makes.
  67. #
  68. # Revision 1.1.1.1  1999/06/08 20:22:22  bogawa
  69. # new make file
  70. #
  71. x: all
  72. .PHONY:ixj
  73. #IXJ = ixj-0.1.39
  74. #IXJ = ixj-0.3.4a-gpl
  75. IXJ = ixj-0.3.18-gpl
  76. INSTALL = install
  77. BUILD = ../../build
  78. include $(BUILD)/Makefile.all
  79. ifeq ($(LARCH),ia32)
  80. ifeq ($(OSTYPE),Linux)
  81. #all: ixj
  82. # cd $(IXJ) ; $(MAKE) 
  83. all: ixj
  84. else
  85. all:
  86. endif
  87. else
  88. all:
  89. endif
  90. ixj: $(IXJ)
  91. -/bin/rm -rf ixj
  92. ln -s $(IXJ) ixj
  93. install: all
  94. cd $(IXJ) ; $(INSTALL) -m 0644 ixjuser.h ../../../release/include
  95. clean:
  96. cd $(IXJ) ; $(MAKE) clean