aboutsummaryrefslogtreecommitdiff
path: root/extMakefile
diff options
context:
space:
mode:
Diffstat (limited to 'extMakefile')
-rw-r--r--extMakefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/extMakefile b/extMakefile
new file mode 100644
index 0000000..3724c1f
--- /dev/null
+++ b/extMakefile
@@ -0,0 +1,13 @@
+PREFIX=/usr/local
+SHAREDIR=${PREFIX}/share
+INFODIR=${SHAREDIR}/info
+DOCDIR=${SHAREDIR}/doc
+
+all:
+ @echo run make install
+
+install:
+ install -Dm644 carbslinux.info ${DESTDIR}${INFODIR}/carbslinux.info
+ install -Dm644 carbslinux.txt ${DESTDIR}${SHAREDIR}/carbslinux.txt
+
+.PHONY: all install