Simplifying the installation. - conn - A script repository to manage connections in Linux.
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
(DIR) commit 48e1c78b9c68f7fd5d8bd78e33f600f774cd1c29
(DIR) parent ab704b4682c6a1f64212774d8665735b9bf1b20d
(HTM) Author: Christoph Lohmann <20h@r-36.net>
Date: Sun, 6 Mar 2011 11:08:10 +0100
Simplifying the installation.
Diffstat:
Makefile | 8 +++++++-
README.md | 10 ++--------
2 files changed, 9 insertions(+), 9 deletions(-)
---
(DIR) diff --git a/Makefile b/Makefile
@@ -30,11 +30,17 @@ etc:
@mkdir -p ${DESTDIR}/etc/conn
@cp -R etc/conn ${DESTDIR}/etc/conn
-install:
+bin:
@echo installing conn script to ${DESTDIR}${PREFIX}/bin
@cp bin/conn ${DESTDIR}${PREFIX}/bin
@chmod 755 ${DESTDIR}${PREFIX}/bin/conn
+install: bin etc pm
+ @echo
+ @echo For installing the connection examples run:
+ @echo ' make examples'
+ @echo
+
uninstall:
@echo removing conn script from ${DESTDIR}${PREFIX}/bin
@rm -f ${DESTDIR}${PREFIX}/bin/conn
(DIR) diff --git a/README.md b/README.md
@@ -17,18 +17,12 @@ many different connections in a Unix like environment.
## Installation
-Needed:
+Just run:
- # For installing the conn script.
make install
- # For installing the etc files.
- make etc
-Optional:
+To install the conection examples from the distribution run:
- # For installing the pm sleep.d script.
- make pm
- # For installing the example connections
make examples
## Architecture