libmikmod-config.in
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:1k
源码类别:

Windows CE

开发平台:

C/C++

  1. #! /bin/sh
  2. prefix=@prefix@
  3. exec_prefix=@exec_prefix@
  4. exec_prefix_set=no
  5. usage="
  6. Usage: libmikmod-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags] [--ldadd]"
  7. if test $# -eq 0 ; then
  8. echo "${usage}" 1>&2
  9. exit 1
  10. fi
  11. while test $# -gt 0 ; do
  12. case "$1" in
  13. -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  14. *) optarg= ;;
  15. esac
  16. case $1 in
  17. --prefix=*)
  18. prefix=$optarg
  19. if test $exec_prefix_set = no ; then
  20. exec_prefix=$optarg
  21. fi
  22. ;;
  23. --prefix)
  24. echo $prefix
  25. ;;
  26. --exec-prefix=*)
  27. exec_prefix=$optarg
  28. exec_prefix_set=yes
  29. ;;
  30. --exec-prefix)
  31. echo $exec_prefix
  32. ;;
  33. --version)
  34. echo @LIBMIKMOD_VERSION@
  35. ;;
  36. --cflags)
  37. includedir=${prefix}/include
  38. if test $includedir != /usr/include ; then
  39. includes=-I$includedir
  40. fi
  41. echo $includes @REENTRANT@
  42. ;;
  43. --ldadd)
  44. echo @LIB_LDADD@
  45. ;;
  46. --libs)
  47. libdir=-L${exec_prefix}/lib
  48. echo $libdir -lmikmod @LIBRARY_LIB@
  49. ;;
  50. *)
  51. echo "${usage}" 1>&2
  52. exit 1
  53. ;;
  54. esac
  55. shift
  56. done