diff options
author | Mattias Andrée <maandree@kth.se> | 2021-02-27 10:53:28 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-02-27 10:53:28 +0100 |
commit | 823df93293ee753d7c56d42ac0295c5ebbd3d98d (patch) | |
tree | 5c4529eab8c8cfc068a58adf0546986d0d06fcd0 /gpp.1 | |
parent | Change license (diff) | |
download | gpp-823df93293ee753d7c56d42ac0295c5ebbd3d98d.tar.gz gpp-823df93293ee753d7c56d42ac0295c5ebbd3d98d.tar.bz2 gpp-823df93293ee753d7c56d42ac0295c5ebbd3d98d.tar.xz |
Add include path example
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | gpp.1 | 52 |
1 files changed, 52 insertions, 0 deletions
@@ -177,6 +177,58 @@ the code will expand to You are logged in as @{USER^}. .fi +.SS Include paths +This example lets the user define a colon-separated +list of paths, in the +.B INCLUDEPATH +environment variable, in which to look for files to +either include directly into the source that is being +preprocessed, using the +.BR include_verbatim () +function, directly into the preprocessor, using the +.BR include () +function, or into the source that is being processed +but after preprocessing it with +.BR gpp , +using the +.BR include_verbatim () +and piping it into +.BR gpp . +.PP +.nf +locate () ( + IFS=: + for d in $INCLUDEPATH; do + if [ -f \(dq$d/$1\(dq ]; then + printf \(aq%s\en\(aq \(dq$d/$1\(dq + exit 0 + fi + done + printf \(aqCannot locate %s\en\(aq \(dq$1\(dq >&2 + exit 1 +) + +includex () { + local method + local file + set -e + method=\(dq$1\(dq + file=\(dq$2\(dq + test -n \(dq$method\(dq + test -n \(dq$file\(dq + shift 2 + $method -- \(dq$(locate \(dq$file\(dq)\(dq \(dq$@\(dq +} + +include () { + locatex . \(dq$@\(dq +} + +include_verbatim () { + locatex cat \(dq$@\(dq +} +.fi + .SH RATIONALE Programmers need more automation when we write software and documentation. An unrestricted preprocessor lets |