summaryrefslogtreecommitdiff
path: root/makefiles/gmake/help.mk
diff options
context:
space:
mode:
Diffstat (limited to 'makefiles/gmake/help.mk')
-rw-r--r--makefiles/gmake/help.mk25
1 files changed, 25 insertions, 0 deletions
diff --git a/makefiles/gmake/help.mk b/makefiles/gmake/help.mk
index fc7e321..b5ffa62 100644
--- a/makefiles/gmake/help.mk
+++ b/makefiles/gmake/help.mk
@@ -10,6 +10,31 @@ make install install (set 'DESTDIR' and 'prefix' at will)
make uninstall uninstall (set 'DESTDIR' and 'prefix' at will)
make dist[-Z|-gz|-bz2] create tarball containing all sources
make help show this very help page
+make config show the configuration used during build
make init-po create initial version of the gettext files
make merge-po merge the gettext files after changes
make check-po check sanity of gettext files
+
+Available optional features:
+
+frontier implementations:
+
+WITH_SYSTEM_SQLITE3=1 use the system version of sqlite3
+WITH_LOCAL_SQLITE=1 use the bundled version of sqlite3
+WITH_PGSQL=1 build the Postgresql frontier
+
+fetcher protocol implementations:
+
+WITH_SYSTEM_LIBFETCH=1 use the system version of BSD libfetch
+WITH_LOCAL_LIBFETCH=1 use the bundled version of BSD libfetch
+
+parser implementations:
+
+WITH_LIBXML2=1 build the libxml2 parser
+
+Some more obscure options:
+
+ENABLE_NLS=0 Don't build gettext NLS support (default is on)
+
+Example:
+make WITH_SQLITE3=1 WITH_PGSQL=1 WITH_LIBXML2=1