From f5fd787b5b45cb14d539b5c26f44066eb9ac0f75 Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Mon, 22 Feb 2016 19:09:54 +0100 Subject: Add buildsystem for Gpgmepp * configure.ac: Configure Makefiles. * lang/Makefile.am: Add cpp subdir * lang/cpp/Makefile.am: New. Add src subdir. * lang/cpp/src/Makefile.am: New. Basic buildsystem. --- lang/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lang/Makefile.am') diff --git a/lang/Makefile.am b/lang/Makefile.am index 854d9348..a8d33f59 100644 --- a/lang/Makefile.am +++ b/lang/Makefile.am @@ -17,6 +17,6 @@ # License along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA -SUBDIRS = cl +SUBDIRS = cl cpp EXTRA_DIST = README -- cgit v1.2.3 From a313b3e28cc42785365822519b25d6a87dfdf0c9 Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Wed, 2 Mar 2016 14:00:48 +0100 Subject: Add enable-languages build option * acinclude.m4 (LIST_MEMBER): New macro. * configure.ac (enable-languages): New option. Add info output. * lang/Makefile.am: Only add enabled language subdirs. --- lang/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lang/Makefile.am') diff --git a/lang/Makefile.am b/lang/Makefile.am index a8d33f59..bb75cf00 100644 --- a/lang/Makefile.am +++ b/lang/Makefile.am @@ -17,6 +17,6 @@ # License along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA -SUBDIRS = cl cpp +SUBDIRS = $(ENABLED_LANGUAGES) EXTRA_DIST = README -- cgit v1.2.3