Add a script to synchronize calcurse with a VDIR collection. Add a wrapper script around vdirsyncer to automatically synchronize calcurse data to a vdirsyncer collection. Add script documentation and Makefile. Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
21 lines
338 B
Makefile
21 lines
338 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = po src test scripts contrib/caldav contrib/vdir
|
|
|
|
if ENABLE_DOCS
|
|
SUBDIRS += doc
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
INSTALL \
|
|
ABOUT-NLS
|
|
|
|
BUILT_SOURCES = $(top_srcdir)/.version
|
|
$(top_srcdir)/.version:
|
|
echo $(VERSION) > $@-t && mv $@-t $@
|
|
|
|
dist-hook:
|
|
echo $(VERSION) > $(distdir)/.version
|