Prepare for minor release.

Seems my bogus makefiles had issues for anyone trying
to make a package.
This commit is contained in:
Alastair Poole 2018-06-17 21:52:38 +01:00
parent 33e70d435f
commit 9413dedaeb
4 changed files with 21 additions and 8 deletions

9
NEWS
View File

@ -1,3 +1,12 @@
============
Evisum 0.1.1
============
Fixes:
* Add fallback mechanism on Linux for disk-detection.
* Make life easier for packagers (thanks Juippis and OnlyHuman).
============
Evisum 0.1.0
============

View File

@ -6,14 +6,18 @@ This is a process monitor and system monitor.
Currently have full engines for Linux, FreeBSD, OpenBSD and MacOS.
Build:
BUILD:
make (or gmake)
$ make (or gmake)
Install:
INSTALL (default PREFIX is /usr/local):
make install
$ make install
or
or as an example:
make PREFIX=/my/prefix install
$ make PREFIX=/usr install
or even:
$ make PREFIX=/opt install

View File

@ -1 +1 @@
0.1.0
0.1.1

View File

@ -2,7 +2,7 @@
See LICENSE file for details.
*/
#define VERSION "0.1.0"
#define VERSION "0.1.1"
#include "process.h"
#include "system.h"