1 # $Id: mk-hdr.awk,v 1.3 2010/05/15 20:10:42 tom Exp $
2 ##############################################################################
3 # Copyright (c) 2007,2010 Free Software Foundation, Inc. #
5 # Permission is hereby granted, free of charge, to any person obtaining a #
6 # copy of this software and associated documentation files (the "Software"), #
7 # to deal in the Software without restriction, including without limitation #
8 # the rights to use, copy, modify, merge, publish, distribute, distribute #
9 # with modifications, sublicense, and/or sell copies of the Software, and to #
10 # permit persons to whom the Software is furnished to do so, subject to the #
11 # following conditions: #
13 # The above copyright notice and this permission notice shall be included in #
14 # all copies or substantial portions of the Software. #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
19 # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
22 # DEALINGS IN THE SOFTWARE. #
24 # Except as contained in this notice, the name(s) of the above copyright #
25 # holders shall not be used in advertising or otherwise to promote the sale, #
26 # use or other dealings in this Software without prior written #
28 ##############################################################################
30 # Author: Thomas E. Dickey 2007
32 # Generate install/uninstall rules for header files
34 # subset ("none", "base", "base+ext_funcs" or "termlib", etc.)
35 # compat ("yes" or "no", flag to add link to curses.h
37 function basename
(path
) {
48 if (subset ==
"none") {
50 } else if (index(subset,$
2) > 0) {
60 if (using
&& NF != 0) {
63 print "# generated by mk-hdr.awk"
64 printf "# subset: %s\n", subset
65 printf "# compat: %s\n", compat
76 print "${DESTDIR}${includedir} :"
80 print "install.libs \\"
81 print "install.includes :: ${AUTO_SRC} ${DESTDIR}${includedir} \\"
83 for (i =
0; i
< count
- 1; ++i
) {
84 printf " %s \\\n", data
[i
]
86 printf " %s\n", data
[count
- 1]
88 for (i =
0; i
< count
; ++i
) {
89 printf " @ (cd ${DESTDIR}${includedir} && rm -f %s) ; ../headers.sh ${INSTALL_DATA} ${DESTDIR}${includedir} ${srcdir} %s\n", basename
(data
[i
]), data
[i
]
90 if (data
[i
] ==
"curses.h" && compat ==
"yes") {
91 printf " @ (cd ${DESTDIR}${includedir} && rm -f ncurses.h && ${LN_S} %s ncurses.h)\n", data
[i
]
96 print "uninstall.libs \\"
97 print "uninstall.includes ::"
99 for (i =
0; i
< count
; ++i
) {
100 printf " -@ (cd ${DESTDIR}${includedir} && rm -f %s)\n", basename
(data
[i
])
101 if (data
[i
] ==
"curses.h" && compat ==
"yes") {
102 printf " -@ (cd ${DESTDIR}${includedir} && rm -f ncurses.h)\n"