[osmium-tool] 47/97: Small updates to wrapper Makefile and README.
Sebastiaan Couwenberg
sebastic at moszumanska.debian.org
Tue Jul 21 20:15:33 UTC 2015
This is an automated email from the git hooks/post-receive script.
sebastic pushed a commit to tag v1.0.0
in repository osmium-tool.
commit 2c73feae47c23e836ab5fbc910f5f82e0fff1caf
Author: Jochen Topf <jochen at topf.org>
Date: Tue Dec 16 17:45:04 2014 +0100
Small updates to wrapper Makefile and README.
---
Makefile | 6 ++++--
README.md | 8 ++++----
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/Makefile b/Makefile
index 5bf93c2..056945c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
all:
- mkdir -p build && cd build && cmake .. && make
+ mkdir -p build && cd build && cmake .. && $(MAKE)
clean:
- mkdir -p build && cd build && cmake .. && make clean
+ if test -d build; then cd build && $(MAKE) clean; fi
distclean:
rm -fr build
@@ -11,3 +11,5 @@ distclean:
deb:
debuild -I -us -uc
+.PHONY: clean distclean deb
+
diff --git a/README.md b/README.md
index abaa92e..d148ec8 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-# OSMIUM Command Line Tool
+# Osmium Command Line Tool
Command line tool for working with OpenStreetMap data based on the Osmium
library.
@@ -50,9 +50,9 @@ You also need the following libraries:
## Building
-Osmium uses CMake for its builds. On Unix/Linux systems a simple Makefile
-wrapper is provided. Just type `make` to compile. Results will be in the
-`build` directory.
+Osmium uses CMake for its builds. For Unix/Linux systems a simple Makefile
+wrapper is provided to make the build even easier. Just type `make` to compile.
+Results will be in the `build` directory.
Or you can go the long route explicitly calling CMake as follows:
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/osmium-tool.git
More information about the Pkg-grass-devel
mailing list