diff --git a/Makefile b/Makefile index b9f676e..0193a61 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ PREFIX = /usr/local NAME = citer -VERSION = 0.0.0 +VERSION = 0.1.0 LICENSE_HEADER_LENGTH = 18 # Order matters here. The "iterator" module must come first, so that when diff --git a/README.md b/README.md index 15fc3a6..ee0acf2 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Don't worry though; it's easy! Simply run `make` in the root directory of the repository. -This will build three notable files: `citer.h`, `libciter.a`, and `libciter.so.0.0.0`. +This will build three notable files: `citer.h`, `libciter.a`, and `libciter.so.0.1.0`. The examples in the `examples/` directory will also be built. Those can be run to test CIter's features. @@ -60,8 +60,8 @@ To install to a different location, run `make PREFIX=/path/to/install/into insta Running `make install` will: - install `citer.h` as `$(PREFIX)/include/citer.h`; - install `libciter.a` as `$(PREFIX)/lib/libciter.a`; - - install `libciter.so.0.0.0` as `$(PREFIX)/lib/libciter.so.0.0.0`; - - create symbolic links `libciter.so` and `libciter.so.0` to `libciter.so.0.0.0` in `$(PREFIX)/lib`. + - install `libciter.so.0.1.0` as `$(PREFIX)/lib/libciter.so.0.1.0`; + - create symbolic links `libciter.so` and `libciter.so.0` to `libciter.so.0.1.0` in `$(PREFIX)/lib`. ### Uninstalling