You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2014/02/03 23:12:43 UTC

[29/29] twig commit: updated refs/heads/import to 2d56280

Build with rebar


Project: http://git-wip-us.apache.org/repos/asf/couchdb-twig/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-twig/commit/2d562804
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-twig/tree/2d562804
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-twig/diff/2d562804

Branch: refs/heads/import
Commit: 2d5628040b9a79eb46797bbdadbc85168905efb6
Parents: bc537fd
Author: Robert Newson <rn...@apache.org>
Authored: Wed Dec 18 14:04:59 2013 +0000
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Fri Jan 17 14:04:42 2014 -0800

----------------------------------------------------------------------
 .gitignore  |  3 ---
 Makefile.am | 49 -------------------------------------------------
 2 files changed, 52 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-twig/blob/2d562804/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 6308d7c..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-ebin
-src/.*.swp
-.project

http://git-wip-us.apache.org/repos/asf/couchdb-twig/blob/2d562804/Makefile.am
----------------------------------------------------------------------
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index 8832ce1..0000000
--- a/Makefile.am
+++ /dev/null
@@ -1,49 +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.
-
-twigebindir = $(localerlanglibdir)/twig/ebin
-
-twigebin_DATA = $(compiled_files)
-
-include_files = \
-	twig_int.hrl
-
-source_files = \
-	src/twig.app.src \
-    src/twig.erl \
-	src/twig_app.erl \
-	src/twig_event_handler.erl \
-	src/twig_monitor.erl \
-	src/twig_sup.erl \
-	src/twig_util.erl \
-	src/trunc_io.erl
-
-compiled_files = \
-	ebin/twig.app \
-    ebin/twig.beam \
-	ebin/twig_app.beam \
-	ebin/twig_event_handler.beam \
-	ebin/twig_monitor.beam \
-	ebin/twig_sup.beam \
-	ebin/twig_util.beam \
-	ebin/trunc_io.beam
-
-EXTRA_DIST = $(include_files) $(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) $<