branch: elpa/emacsql commit 2567e495e6296a6227e32d7519e6b34a1051b7ab Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
readme: Update contribution instructions Also remove the corresponding information from the Makefile. --- Makefile | 7 ------- README.md | 14 ++++++++------ 2 files changed, 8 insertions(+), 13 deletions(-) diff --git a/Makefile b/Makefile index 48908b9197..5cb01bf168 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,5 @@ -include .config.mk -# Clone the dependencies of this package in sibling directories: -# $ git clone https://github.com/emarsden/pg-el ../pg -# $ git clone https://github.com/pekingduck/emacs-sqlite3-api.git ../sqlite3 -# -# Or set LOAD_PATH to point at these packages elsewhere: -# $ make LOAD_PATH='-L path/to/pg -L path/to/sqlite3' - PKG = emacsql ELS = $(PKG)-compiler.el diff --git a/README.md b/README.md index f9ecb973ea..1399249ed3 100644 --- a/README.md +++ b/README.md @@ -366,18 +366,20 @@ advises the major mode to fix this annoyance. ## Contributing and Extending -To run the test suite, clone the `pg` and `finalize` packages into +To run the test suite, clone the `pg` and `sqlite3` packages into sibling directories. The Makefile will automatically put these paths on the Emacs load path (override `LDFLAGS` if your situation is different). - $ cd .. - $ git clone https://github.com/cbbrowne/pg.el pg - $ git clone https://github.com/skeeto/elisp-finalize finalize - $ cd - + $ git clone https://github.com/emarsden/pg-el ../pg + $ git clone https://github.com/pekingduck/emacs-sqlite3-api ../sqlite3 + +Or set `LOAD_PATH` to point at these packages elsewhere: + + $ make LOAD_PATH='-L path/to/pg -L path/to/sqlite3' Then invoke make: - $ make test + $ make test If the environment variable `PGDATABASE` is present then the unit tests will also be run with PostgreSQL (emacsql-psql). Provide