Beginning (only the beginning) of the implementation of the dist target for plugins

Initial
Stephane Bortzmeyer 20 years ago
parent 3944b57c90
commit 446a7f0aaa

@ -6,7 +6,7 @@ bin_PROGRAMS = echoping
man_MANS = echoping.1
echoping_SOURCES = echoping.c error.c readline.c writen.c util.c http.c icp.c HTParse.c echoping.h icp.h HTParse.h smtp.c
echoping_LDADD =
DOCS=DETAILS
DOCS=DETAILS PLUGINS
SUBDIRS=plugins
# Export global symbols to plugins

@ -73,7 +73,7 @@ bin_PROGRAMS = echoping
man_MANS = echoping.1
echoping_SOURCES = echoping.c error.c readline.c writen.c util.c http.c icp.c HTParse.c echoping.h icp.h HTParse.h smtp.c
echoping_LDADD =
DOCS = DETAILS
DOCS = DETAILS PLUGINS
SUBDIRS = plugins
# Export global symbols to plugins

@ -13,3 +13,10 @@ ifneq (${SUBDIRS},)
(cd $$subdir && ${MAKE} $@) \
done
endif
distdir:
ifneq (${SUBDIRS},)
@for subdir in ${SUBDIRS}; do \
(cd $$subdir && ${MAKE} $@) \
done
endif

@ -16,6 +16,9 @@ install:
@echo "Not installing the DNS plugin"
endif
distdir:
test -d ../${top_distdir}/plugins/dns || mkdir ../${top_distdir}/plugins/dns
# $Id$

@ -17,6 +17,8 @@ install:
@echo "Not installing the PostgreSQL plugin"
endif
distdir:
test -d ../${top_distdir}/plugins/postgresql || mkdir ../${top_distdir}/plugins/postgresql
# $Id$

@ -17,6 +17,10 @@ install:
@echo "Not installing the random plugin"
endif
distdir:
test -d ../${top_distdir}/plugins/random || mkdir ../${top_distdir}/plugins/random
cp random.c Makefile.in configure.ac configure ../${top_distdir}/plugins/random
# $Id$

@ -17,6 +17,9 @@ install:
@echo "Not installing the whois plugin"
endif
distdir:
test -d ../${top_distdir}/plugins/whois || mkdir ../${top_distdir}/plugins/whois
# $Id$

Loading…
Cancel
Save