mkh 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. #! /bin/sh
  2. # mkh - pull headers out of C source
  3. PATH=/bin:/usr/bin ; export PATH
  4. # egrep pattern to pick out marked lines
  5. egrep='^ =([ ]|$)'
  6. # Sed program to process marked lines into lines for the header file.
  7. # The markers have already been removed. Two things are done here: removal
  8. # of backslashed newlines, and some fudging of comments. The first is done
  9. # because -o needs to have prototypes on one line to strip them down.
  10. # Getting comments into the output is tricky; we turn C++-style // comments
  11. # into /* */ comments, after altering any existing */'s to avoid trouble.
  12. peel=' /\\$/N
  13. /\\\n[ ]*/s///g
  14. /\/\//s;\*/;* /;g
  15. /\/\//s;//\(.*\);/*\1 */;'
  16. for a
  17. do
  18. case "$a" in
  19. -o) # old (pre-function-prototype) compiler
  20. # add code to comment out argument lists
  21. peel="$peel
  22. "'/^\([^#\/][^\/]*[a-zA-Z0-9_)]\)(\(.*\))/s;;\1(/*\2*/);'
  23. shift
  24. ;;
  25. -b) # funny Berkeley __P macro
  26. peel="$peel
  27. "'/^\([^#\/][^\/]*[a-zA-Z0-9_)]\)(\(.*\))/s;;\1 __P((\2));'
  28. shift
  29. ;;
  30. -s) # compiler doesn't like `static foo();'
  31. # add code to get rid of the `static'
  32. peel="$peel
  33. "'/^static[ ][^\/]*[a-zA-Z0-9_)](.*)/s;static.;;'
  34. shift
  35. ;;
  36. -p) # private declarations
  37. egrep='^ ==([ ]|$)'
  38. shift
  39. ;;
  40. -i) # wrap in #ifndef, argument is name
  41. ifndef="$2"
  42. shift ; shift
  43. ;;
  44. *) break
  45. ;;
  46. esac
  47. done
  48. if test " $ifndef" != " "
  49. then
  50. echo "#ifndef $ifndef"
  51. echo "#define $ifndef /* never again */"
  52. fi
  53. echo "/* ========= begin header generated by $0 ========= */"
  54. echo '#ifdef __cplusplus'
  55. echo 'extern "C" {'
  56. echo '#endif'
  57. for f
  58. do
  59. echo
  60. echo "/* === $f === */"
  61. egrep "$egrep" $f | sed 's/^ ==*[ ]//;s/^ ==*$//' | sed "$peel"
  62. echo
  63. done
  64. echo '#ifdef __cplusplus'
  65. echo '}'
  66. echo '#endif'
  67. echo "/* ========= end header generated by $0 ========= */"
  68. if test " $ifndef" != " "
  69. then
  70. echo "#endif"
  71. fi
  72. exit 0