diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2008-08-19 19:46:10 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2008-08-19 19:46:10 +0400 |
commit | 86fd197a95f72d09e5cccbc059829ff5f6b03b87 (patch) | |
tree | 5c6ca0c98bde0b2a6703f30283ba33bb393fc7b8 /Makefile.in | |
parent | 4fcd073731ec81987c662e04b480846634e71c59 (diff) | |
download | rspamd-86fd197a95f72d09e5cccbc059829ff5f6b03b87.tar.gz rspamd-86fd197a95f72d09e5cccbc059829ff5f6b03b87.zip |
* Add initial implementation of rspamd XS module
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index aa9112e70..65cd1a405 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,5 +1,8 @@ -all: $(TARGETS) +all: perl $(TARGETS) + +perl: + cd perl && make && cd .. memctest: upstream.c memcached.c memcached-test.c $(CC) $(OPT_FLAGS) $(CFLAGS) $(PTHREAD_CFLAGS) -c upstream.c @@ -17,11 +20,13 @@ install: $(EXEC) clean: rm -f *.o $(EXEC) *.core rm -f cfg_lex.c cfg_yacc.c cfg_yacc.h + cd perl && make clean && cd .. dist-clean: clean rm -f Makefile rm -f config.log rm -f md5.h md5.c strlcpy.h strlcpy.c queue.h config.h modules.c + cd perl && rm -f Makefile.old && rm -f Makefile.PL && cd .. creategroup: @echo "Create group $(RSPAMD_GROUP) before installing!" |