diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/eldap/Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2008-03-22 Mickael Remond <mremond@process-one.net> + + * src/eldap/Makefile.in: Generate ELDAPv3.beam during first Makefile + pass (EJAB-583). + 2008-03-22 Badlop <badlop@process-one.net> * doc/guide.tex: Document service_check_from (EJAB-576) diff --git a/src/eldap/Makefile.in b/src/eldap/Makefile.in index 0b8273628..4e1e87688 100644 --- a/src/eldap/Makefile.in +++ b/src/eldap/Makefile.in @@ -16,11 +16,11 @@ ifdef debug endif OUTDIR = .. -SOURCES = $(wildcard *.erl) +SOURCES = $(wildcard *.erl) ELDAPv3.erl BEAMS = $(addprefix $(OUTDIR)/,$(SOURCES:.erl=.beam)) -all: $(BEAMS) +all: $(BEAMS) ELDAPv3.beam ELDAPv3.erl: ELDAPv3.asn @ERLC@ -bber_bin -W $(EFLAGS) $< |