Updated Branches: refs/heads/1994-merge-rcouch 589d9589c -> c8f517dc4 (forced update)
remove Makefile.am from apps/ and fix couchspawnkillable Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/commit/4a84e12e Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/tree/4a84e12e Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/diff/4a84e12e Branch: refs/heads/1994-merge-rcouch Commit: 4a84e12e3914b39d011418c72948461d3d02456a Parents: 761d5e1 Author: benoitc <[email protected]> Authored: Tue Jan 7 19:15:43 2014 +0100 Committer: Paul J. Davis <[email protected]> Committed: Wed Feb 12 18:16:57 2014 -0600 ---------------------------------------------------------------------- Makefile.am | 78 -------------------------------------------------------- 1 file changed, 78 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/blob/4a84e12e/Makefile.am ---------------------------------------------------------------------- diff --git a/Makefile.am b/Makefile.am deleted file mode 100644 index 2dcd47d..0000000 --- a/Makefile.am +++ /dev/null @@ -1,78 +0,0 @@ -## Licensed under the Apache License, Version 2.0 (the "License"); you may not -## use this file except in compliance with the License. You may obtain a copy of -## the License at -## -## http://www.apache.org/licenses/LICENSE-2.0 -## -## Unless required by applicable law or agreed to in writing, software -## distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -## WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -## License for the specific language governing permissions and limitations under -## the License. - -couch_replicatorlibdir = $(localerlanglibdir)/couch_replicator-0.1 -couch_replicatorincludedir = $(couch_replicatorlibdir)/include -couch_replicatorebindir = $(couch_replicatorlibdir)/ebin - -couch_replicatorinclude_DATA = $(include_files) -couch_replicatorebin_DATA = $(compiled_files) - -include_files = \ - src/couch_replicator_api_wrap.hrl \ - src/couch_replicator.hrl \ - src/couch_replicator_js_functions.hrl - -source_files = \ - src/couch_replicator_api_wrap.erl \ - src/couch_replicator_httpc_pool.erl \ - src/couch_replicator_httpc.erl \ - src/couch_replicator_httpd.erl \ - src/couch_replicator_job_sup.erl \ - src/couch_replicator_notifier.erl \ - src/couch_replicator_manager.erl \ - src/couch_replicator_utils.erl \ - src/couch_replicator_worker.erl \ - src/couch_replicator.app.src \ - src/couch_replicator.erl - -test_files = \ - test/01-load.t \ - test/02-httpc-pool.t \ - test/03-replication-compact.t \ - test/04-replication-large-atts.t \ - test/05-replication-many-leaves.t \ - test/06-doc-missing-stubs.t \ - test/07-use-checkpoints.t - -compiled_files = \ - ebin/couch_replicator_api_wrap.beam \ - ebin/couch_replicator_httpc_pool.beam \ - ebin/couch_replicator_httpc.beam \ - ebin/couch_replicator_httpd.beam \ - ebin/couch_replicator_job_sup.beam \ - ebin/couch_replicator_notifier.beam \ - ebin/couch_replicator_manager.beam \ - ebin/couch_replicator_utils.beam \ - ebin/couch_replicator_worker.beam \ - ebin/couch_replicator.app \ - ebin/couch_replicator.beam - -EXTRA_DIST = $(include_files) $(source_files) $(test_files) -CLEANFILES = $(compiled_files) - -check: -if TESTS - $(abs_top_builddir)/test/etap/run $(abs_top_srcdir)/src/couch_replicator/test -endif - -ebin/%.app: src/%.app.src - @mkdir -p ebin/ - sed -e "s|%version%|@version@|g" \ - < $< > $@ - -ebin/%.beam: src/%.erl $(include_files) - @mkdir -p ebin/ - $(ERLC) -Wall -I$(top_srcdir)/src -I$(top_srcdir)/src/couchdb \ - -o ebin/ $(ERLC_FLAGS) ${TEST} $<; - -
