diff options
author | Alexey Shchepin <alexey@process-one.net> | 2004-09-26 20:46:43 +0000 |
---|---|---|
committer | Alexey Shchepin <alexey@process-one.net> | 2004-09-26 20:46:43 +0000 |
commit | cbcb2bd3a643ab67413f68cc36171e6c67030308 (patch) | |
tree | 7bc7b1a78da51a984ab9b7927437317498261df5 /src/stringprep | |
parent | * src/jlib.hrl: Added namespace for iq-register stream feature (diff) |
* src/aclocal.m4: Better expat and openssl detection (thanks to
Anton Vanin)
* src/**/Makefile.in: Updated (thanks to Anton Vanin)
* src/configure.ac: Likewise
SVN Revision: 267
Diffstat (limited to 'src/stringprep')
-rw-r--r-- | src/stringprep/Makefile.in | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/src/stringprep/Makefile.in b/src/stringprep/Makefile.in index 1e8154de..cd1ddbba 100644 --- a/src/stringprep/Makefile.in +++ b/src/stringprep/Makefile.in @@ -1,23 +1,15 @@ # $Id$ - CC = @CC@ -CFLAGS = @CFLAGS@ +CFLAGS = @CFLAGS@ @ERLANG_CFLAGS@ CPPFLAGS = @CPPFLAGS@ LDFLAGS = @LDFLAGS@ -LIBS = @LIBS@ - -INCLUDES = @ERLANG_CFLAGS@ - -LIBDIRS = @ERLANG_LIBS@ +LIBS = @LIBS@ @ERLANG_LIBS@ SUBDIRS = - ERLSHLIBS = ../stringprep_drv.so - - OUTDIR = .. EFLAGS = -I .. -pz .. OBJS = \ @@ -28,17 +20,13 @@ all: $(OBJS) $(ERLSHLIBS) $(OUTDIR)/%.beam: %.erl erlc -W $(EFLAGS) -o $(OUTDIR) $< - - #all: $(ERLSHLIBS) # erl -s make all report "{outdir, \"..\"}" -noinput -s erlang halt $(ERLSHLIBS): ../%.so: %.c uni_data.c uni_norm.c - gcc -Wall -O2 $(INCLUDES) $(LIBDIRS) \ - $(subst ../,,$(subst .so,.c,$@)) \ - -lerl_interface \ - -lei \ - -o $@ -fpic -shared \ + gcc -Wall -O2 $(CFLAGS) $(LDFLAGS) $(INCLUDES) \ + $(subst ../,,$(subst .so,.c,$@)) $(LIBS) \ + -o $@ -fpic -shared clean: rm -f $(OBJS) $(ERLSHLIBS) |