summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Newson <rnewson@apache.org>2013-12-18 14:04:59 +0000
committerPaul J. Davis <paul.joseph.davis@gmail.com>2014-01-17 13:59:41 -0800
commita0bd404860cfec8d232149229029c6bb0b051894 (patch)
tree0d2a5acf7f4a6030778cb5bf399f480cdf908021
parentf68f7246e0004d99b94cf7451dfc9b48f15dfe89 (diff)
downloadcouchdb-a0bd404860cfec8d232149229029c6bb0b051894.tar.gz
Build with rebar
-rw-r--r--.gitignore8
-rw-r--r--Makefile.am48
-rw-r--r--src/rexi.app.src2
3 files changed, 1 insertions, 57 deletions
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 4f2f0404d..000000000
--- a/.gitignore
+++ /dev/null
@@ -1,8 +0,0 @@
-# building
-ebin
-.eunit
-logs
-*.spec
-deps
-*.beam
-
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index e6586277d..000000000
--- a/Makefile.am
+++ /dev/null
@@ -1,48 +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.
-
-rexiebindir = $(localerlanglibdir)/rexi/ebin
-
-rexiebin_DATA = $(compiled_files)
-
-source_files = \
- src/rexi.app.src \
- src/rexi.erl \
- src/rexi_app.erl \
- src/rexi_gov_manager.erl \
- src/rexi_governor.erl \
- src/rexi_monitor.erl \
- src/rexi_server.erl \
- src/rexi_sup.erl \
- src/rexi_utils.erl
-
-compiled_files = \
- ebin/rexi.app \
- ebin/rexi.beam \
- ebin/rexi_app.beam \
- ebin/rexi_gov_manager.beam \
- ebin/rexi_governor.beam \
- ebin/rexi_monitor.beam \
- ebin/rexi_server.beam \
- ebin/rexi_sup.beam \
- ebin/rexi_utils.beam
-
-EXTRA_DIST = $(source_files)
-CLEANFILES = $(compiled_files)
-
-ebin/%.app: src/%.app.src
- @mkdir -p ebin/
- sed -e "s|%version%|@version@|g" < $< > $@
-
-ebin/%.beam: src/%.erl
- @mkdir -p ebin/
- $(ERLC) -Wall -I$(top_srcdir)/src -o ebin/ $(ERLC_FLAGS) $<
diff --git a/src/rexi.app.src b/src/rexi.app.src
index c9af9d06a..0691edd67 100644
--- a/src/rexi.app.src
+++ b/src/rexi.app.src
@@ -12,7 +12,7 @@
{application, rexi, [
{description, "Lightweight RPC server"},
- {vsn, "%version%"},
+ {vsn, git},
{modules, [
rexi,
rexi_app,