diff options
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..482cf25 --- /dev/null +++ b/config.mk @@ -0,0 +1,23 @@ +# Carbs Packaging Tools +VERSION = 6.0.0 + +# Installation paths +PREFIX = /usr/local +BINDIR = ${PREFIX}/bin +SHAREDIR = ${PREFIX}/share +INFODIR = ${SHAREDIR}/info +DOCDIR = ${SHAREDIR}/doc +CPTDOC = ${DOCDIR}/cpt +MANPREFIX = ${SHAREDIR}/man +MAN1 = ${MANPREFIX}/man1 + +EMACS = emacs +MAKEINFO = makeinfo + +# Comment or change if you don't want to build/install the documentation +DOCS = yes + +# Files to be added into the distribution tarball +DISTFILES = contrib docs man spec src tests tools \ + .dir-locals.el CHANGELOG.md INSTALL LICENSE \ + Makefile README config.mk cpt-base |