search for: erlang_bin_data

Displaying 3 results from an estimated 3 matches for "erlang_bin_data".

2011 Nov 15
3
[PATCH 1/3] out of tree build: erlang
...kefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/erlang/Makefile.am b/erlang/Makefile.am index f336375..2c9e359 100644 --- a/erlang/Makefile.am +++ b/erlang/Makefile.am @@ -32,7 +32,7 @@ erlang_bindir = $(libdir)/erlang/lib/$(PACKAGE_NAME)-$(PACKAGE_VERSION)/ebin erlang_bin_DATA = guestfs.beam guestfs.beam: guestfs.erl - $(ERLC) +debug_info guestfs.erl + $(ERLC) +debug_info $^ bin_PROGRAMS = erl-guestfs -- 1.7.7.2
2016 Aug 04
1
[PATCH] build: add simple custom silent rules for automake
...6 +++--- ocaml/Makefile.am | 14 +++++++------- subdir-rules.mk | 20 +++++++++++++++++--- 4 files changed, 28 insertions(+), 14 deletions(-) diff --git a/erlang/Makefile.am b/erlang/Makefile.am index a9825f6..7dc0906 100644 --- a/erlang/Makefile.am +++ b/erlang/Makefile.am @@ -52,7 +52,7 @@ erlang_bin_DATA = guestfs.beam # The ./run script will set $ERL_LIBS to point to $(builddir)/erlang. # (See: http://www.erlang.org/doc/man/code.html) guestfs.beam: guestfs.erl - $(ERLC) +debug_info $^ + $(guestfs_am_v_erlc)$(ERLC) +debug_info $^ mkdir -p $(PACKAGE)-$(VERSION)/ebin cp $@ $(PACKAGE)-$(VERSION...
2016 Aug 25
2
[PATCH] build: Add common CLEANFILES and DISTCLEANFILES to common-rules.mk.
...-virt-edit.pod \ - virt-edit.1 - bin_PROGRAMS = virt-edit SHARED_SOURCE_FILES = \ diff --git a/erlang/Makefile.am b/erlang/Makefile.am index 7dc0906..fb1a3dc 100644 --- a/erlang/Makefile.am +++ b/erlang/Makefile.am @@ -28,10 +28,8 @@ EXTRA_DIST = \ tests/*.erl \ README -CLEANFILES = \ - $(erlang_bin_DATA) \ - $(bin_PROGRAMS) \ - bindtests.tmp +CLEANFILES += \ + $(erlang_bin_DATA) # Erlang makes a new libguestfs-<VERSION>/ebin subdirectory each time # we build, so we have to remove that and any previous copies. diff --git a/erlang/examples/Makefile.am b/erlang/examples/Makefile.am index 0d...