diff options
author | Alexey Shchepin <alexey@process-one.net> | 2003-10-17 19:15:38 +0000 |
---|---|---|
committer | Alexey Shchepin <alexey@process-one.net> | 2003-10-17 19:15:38 +0000 |
commit | 392d64ee8bd137c75fc6187e49a4757533e77e3c (patch) | |
tree | 9ac5a9eac735d08984c7ca0cbd47bc7ea6b90c95 /src/mod_pubsub | |
parent | * src/mod_configure.erl: Fixed some error codes (diff) |
* src/configure.ac: Build system now done using autoconf (thanks
to Balabanov Dmitry)
* src/aclocal.m4: Likewise
* src/**/Makefile.in: Likewise
* src/mod_roster.erl (process_item_set_t): Slightly improved
performance
* src/jd2ejd.erl: Added missed closing of XML stream process,
removed timeout value from import_file/1
* src/ejabberd_auth.erl: Added checks for invalid user name
SVN Revision: 152
Diffstat (limited to 'src/mod_pubsub')
-rw-r--r-- | src/mod_pubsub/Makefile.in (renamed from src/mod_pubsub/Makefile) | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/mod_pubsub/Makefile b/src/mod_pubsub/Makefile.in index 03b4c081..9cec7347 100644 --- a/src/mod_pubsub/Makefile +++ b/src/mod_pubsub/Makefile.in @@ -1,12 +1,16 @@ # $Id$ -include ../Makefile.inc +CC = @CC@ +CFLAGS = @CFLAGS@ +CPPFLAGS = @CPPFLAGS@ +LDFLAGS = @LDFLAGS@ +LIBS = @LIBS@ -INCLUDES = -I$(ERLANG_DIR)/usr/include \ - -I$(EI_DIR)/include \ - -I/usr/local/include +INCLUDES = @ERLANG_CFLAGS@ -LIBDIRS = -L$(EI_DIR)/lib -L/usr/local/lib +LIBDIRS = @ERLANG_LIBS@ + +SUBDIRS = OUTDIR = .. @@ -21,7 +25,7 @@ $(OUTDIR)/%.beam: %.erl clean: - rm -f *.beam + rm -f $(OBJS) TAGS: etags *.erl |