From 8ab365e7d6965824fa8853fb657f46d2597debfe Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Mon, 1 Feb 2016 10:14:20 +0100 Subject: [PATCH] Add a note about generating the Makefiles --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index 0d62343..1df8da1 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,26 @@ explicitly: $ make LDFLAGS="-ldl" +Generating Makefiles +-------------------- + +Alternatively, it is possible to re-generate the Makefiles for the current +platform with `configure(1)` from the DeforaOS configure project, found at +. The procedure is then as +follows: + + $ configure + $ make + +Please refer to the documentation of DeforaOS configure for further +instructions. + +A default set of Makefiles is provided with this project in order to avoid a +circular dependency, as DeforaOS configure depends on libSystem itself. The +Makefiles provided target the NetBSD Operating System +by default. + + Python bindings --------------- @@ -45,3 +65,7 @@ installed as follows: Likewise, an alternate installation directory may be specified: $ (cd src/python && make PREFIX="/path/to/libSystem" install) + +Makefiles can be re-generated for the bindings as well: + + $ configure src/python