changeset: 53:287fe9765164
tag: tip
user: Nico Golde <nion_AT_suckless.org>
date: Sat Feb 03 13:09:13 2007 +0100
files: Makefile config.mk
description:
makefile needs to install new files
diff -r 71c3217e228f -r 287fe9765164 Makefile
--- a/Makefile Sat Feb 03 12:58:13 2007 +0100
+++ b/Makefile Sat Feb 03 13:09:13 2007 +0100
@@ -23,7 +23,7 @@ options:
dist: clean
@mkdir -p ii-${VERSION}
- @cp -R Makefile README FAQ LICENSE config.mk ii.c ii.1 ii-${VERSION}
+ @cp -R query.sh Makefile README FAQ LICENSE config.mk ii.c ii.1 ii-${VERSION}
@tar -cf ii-${VERSION}.tar ii-${VERSION}
@gzip ii-${VERSION}.tar
@rm -rf ii-${VERSION}
@@ -34,13 +34,19 @@ ii: ${OBJ}
@${CC} -o $@ ${OBJ} ${LDFLAGS}
install: all
+ @mkdir -p ${DESTDIR}${DOCDIR}
+ @mkdir -p ${DESTDIR}${BINDIR}
+ @mkdir -p ${DESTDIR}${MAN1DIR}
+
@install -d ${DESTDIR}${BINDIR} ${DESTDIR}${MAN1DIR}
+ @install -m 644 README query.sh FAQ LICENSE ${DESTDIR}${DOCDIR}
@install -m 775 ii ${DESTDIR}${BINDIR}
@install -m 444 ii.1 ${DESTDIR}${MAN1DIR}
@echo "installed ii"
uninstall: all
rm -f ${DESTDIR}${MAN1DIR}/ii.1
+ rm -rf ${DESTDIR}${DOCDIR}
rm -f ${DESTDIR}${BINDIR}/ii
clean:
diff -r 71c3217e228f -r 287fe9765164 config.mk
--- a/config.mk Sat Feb 03 12:58:13 2007 +0100
+++ b/config.mk Sat Feb 03 13:09:13 2007 +0100
@@ -5,6 +5,8 @@ BINDIR = ${PREFIX}/bin
BINDIR = ${PREFIX}/bin
MANDIR = ${PREFIX}/share/man
MAN1DIR = ${MANDIR}/man1
+DOCDIR = ${PREFIX}/share/doc/ii
+
# Set the following to install to a different root
DESTDIR =
Received on Sat Feb 03 2007 - 13:10:02 UTC
This archive was generated by hypermail 2.2.0 : Sun Jul 13 2008 - 15:54:51 UTC