diff options
-rw-r--r-- | Makefile.am | 8 | ||||
-rw-r--r-- | bindings/Makefile.am | 11 | ||||
-rw-r--r-- | bindings/python/Makefile.am (renamed from python/Makefile.am) | 0 | ||||
-rw-r--r-- | bindings/python/pyzmq.cpp (renamed from python/pyzmq.cpp) | 0 | ||||
-rw-r--r-- | bindings/python/setup.py.in (renamed from python/setup.py.in) | 0 | ||||
-rw-r--r-- | configure.in | 3 |
6 files changed, 15 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am index ad4558f..82bddfe 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,3 @@ -if BUILD_PYTHON -DIR_P = python -endif - if BUILD_RUBY DIR_R = ruby endif @@ -10,8 +6,8 @@ if BUILD_PERF DIR_PERF = perf endif -SUBDIRS = src $(DIR_P) $(DIR_R) $(DIR_PERF) devices bindings -DIST_SUBDIRS = src python ruby perf devices bindings +SUBDIRS = src $(DIR_R) $(DIR_PERF) devices bindings +DIST_SUBDIRS = src ruby perf devices bindings EXTRA_DIST = $(top_srcdir)/foreign/openpgm/@pgm_basename@.tar.bz2 diff --git a/bindings/Makefile.am b/bindings/Makefile.am new file mode 100644 index 0000000..2b877ed --- /dev/null +++ b/bindings/Makefile.am @@ -0,0 +1,11 @@ +if BUILD_JAVA +DIR_J = java +endif + +if BUILD_PYTHON +DIR_P = python +endif + +SUBDIRS = $(DIR_J) $(DIR_P) +DIST_SUBDIRS = java python + diff --git a/python/Makefile.am b/bindings/python/Makefile.am index effe8b9..effe8b9 100644 --- a/python/Makefile.am +++ b/bindings/python/Makefile.am diff --git a/python/pyzmq.cpp b/bindings/python/pyzmq.cpp index 628d037..628d037 100644 --- a/python/pyzmq.cpp +++ b/bindings/python/pyzmq.cpp diff --git a/python/setup.py.in b/bindings/python/setup.py.in index f7055d5..f7055d5 100644 --- a/python/setup.py.in +++ b/bindings/python/setup.py.in diff --git a/configure.in b/configure.in index 1cdfd34..eee00c3 100644 --- a/configure.in +++ b/configure.in @@ -488,7 +488,8 @@ AC_FUNC_MALLOC AC_TYPE_SIGNAL AC_CHECK_FUNCS(perror gettimeofday memset socket getifaddrs freeifaddrs) -AC_OUTPUT(Makefile src/Makefile python/Makefile python/setup.py ruby/Makefile \ +AC_OUTPUT(Makefile src/Makefile bindings/python/Makefile \ + bindings/python/setup.py ruby/Makefile \ bindings/java/Makefile perf/Makefile perf/c/Makefile perf/cpp/Makefile \ perf/python/Makefile perf/ruby/Makefile perf/java/Makefile src/libzmq.pc \ devices/Makefile devices/zmq_forwarder/Makefile bindings/Makefile) |