003 File Manager
Current Path:
/usr/src/contrib/ncurses
usr
/
src
/
contrib
/
ncurses
/
📁
..
📄
ANNOUNCE
(40.62 KB)
📄
AUTHORS
(2.57 KB)
📄
COPYING
(1.41 KB)
📄
FREEBSD-Xlist
(92 B)
📄
FREEBSD-upgrade
(1.57 KB)
📄
INSTALL
(90.4 KB)
📄
MANIFEST
(36.06 KB)
📄
Makefile.in
(4.33 KB)
📄
Makefile.os2
(8.62 KB)
📄
NEWS
(631.93 KB)
📄
README
(10.05 KB)
📄
README.MinGW
(6.52 KB)
📄
README.emx
(3.98 KB)
📄
TO-DO
(9.5 KB)
📄
VERSION
(20 B)
📄
aclocal.m4
(258.29 KB)
📄
announce.html.in
(66.07 KB)
📄
config.guess
(47.31 KB)
📄
config.sub
(30.87 KB)
📄
configure
(730.47 KB)
📄
configure.in
(75.89 KB)
📄
convert_configure.pl
(4.84 KB)
📄
dist.mk
(7.23 KB)
📁
doc
📁
form
📁
include
📄
install-sh
(6.96 KB)
📁
man
📁
menu
📁
misc
📄
mk-0th.awk
(5.74 KB)
📄
mk-1st.awk
(18.09 KB)
📄
mk-2nd.awk
(5.24 KB)
📄
mk-hdr.awk
(3.92 KB)
📁
ncurses
📁
panel
📁
progs
Editing: mk-hdr.awk
# $Id: mk-hdr.awk,v 1.5 2020/02/02 23:34:34 tom Exp $ ############################################################################## # Copyright 2020 Thomas E. Dickey # # Copyright 2007-2010,2013 Free Software Foundation, Inc. # # # # Permission is hereby granted, free of charge, to any person obtaining a # # copy of this software and associated documentation files (the "Software"), # # to deal in the Software without restriction, including without limitation # # the rights to use, copy, modify, merge, publish, distribute, distribute # # with modifications, sublicense, and/or sell copies of the Software, and to # # permit persons to whom the Software is furnished to do so, subject to the # # following conditions: # # # # The above copyright notice and this permission notice shall be included in # # all copies or substantial portions of the Software. # # # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # # DEALINGS IN THE SOFTWARE. # # # # Except as contained in this notice, the name(s) of the above copyright # # holders shall not be used in advertising or otherwise to promote the sale, # # use or other dealings in this Software without prior written # # authorization. # ############################################################################## # # Author: Thomas E. Dickey 2007 # # Generate install/uninstall rules for header files # Variables: # subset ("none", "base", "base+ext_funcs" or "termlib", etc.) # compat ("yes" or "no", flag to add link to curses.h # function basename(path) { sub(/^.*\//,"",path) return path; } BEGIN { found = 0 using = 1 count = 0 } /^@/ { using = 0 if (subset == "none") { using = 1 } else if (index(subset,$2) > 0) { using = 1 } else { using = 0 } } /^[@#]/ { next } { if (using && NF != 0) { if (found == 0) { print "" print "# generated by mk-hdr.awk" printf "# subset: %s\n", subset printf "# compat: %s\n", compat print "" found = 1 } data[count] = $1 count = count + 1 } } END { if ( count > 0 ) { print "${INCLUDEDIR} :" print " mkdir -p $@" print "" print "install \\" print "install.libs \\" print "install.includes :: ${AUTO_SRC} ${INCLUDEDIR} \\" for (i = 0; i < count - 1; ++i) { printf " %s \\\n", data[i] } printf " %s\n", data[count - 1] for (i = 0; i < count; ++i) { printf " @ (cd ${INCLUDEDIR} && rm -f %s) ; ../headers.sh ${INSTALL_DATA} ${INCLUDEDIR} ${srcdir} %s\n", basename(data[i]), data[i] if (data[i] == "curses.h" && compat == "yes") { printf " @ (cd ${INCLUDEDIR} && rm -f ncurses.h && ${LN_S} %s ncurses.h)\n", data[i] } } print "" print "uninstall \\" print "uninstall.libs \\" print "uninstall.includes ::" for (i = 0; i < count; ++i) { printf " -@ (cd ${INCLUDEDIR} && rm -f %s)\n", basename(data[i]) if (data[i] == "curses.h" && compat == "yes") { printf " -@ (cd ${INCLUDEDIR} && rm -f ncurses.h)\n" } } } } # vile:ts=4 sw=4
Upload File
Create Folder