diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-03-18 21:40:11 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-03-18 21:40:11 -0700 |
commit | b627e525556c4452cb05ce8744e3f21f2bda2eb2 (patch) | |
tree | 598e1f2079becc946b668fc0f02715bc508bc2ff | |
parent | 0e0f32eb8d4377dd8b2750a4e81c553d68391e63 (diff) | |
download | cppawk-b627e525556c4452cb05ce8744e3f21f2bda2eb2.tar.gz cppawk-b627e525556c4452cb05ce8744e3f21f2bda2eb2.tar.bz2 cppawk-b627e525556c4452cb05ce8744e3f21f2bda2eb2.zip |
Add INSTALL file.
-rw-r--r-- | INSTALL | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +Installing cppawk +----------------- + +A cppawk installation consists of the cppawk script accompanied by +the cppawk-include directory containing the cppawk headers. +This directory is placed in the same directory as cppawk, side by side. + +For instance, /usr/local/bin/cppawk and /usr/local/bin/cppawk-include/. + +# root=/path/to/installation +# install -d ${root} +# install cppawk ${root} +# cp -r cppawk-include ${root} +# chmod -R a+rX,go-w ${root} |