From f4639f6fbd7d219149fc03979a80a9729c57c303 Mon Sep 17 00:00:00 2001 From: cdfrey Date: Fri, 2 Mar 2007 20:48:27 +0000 Subject: [PATCH] - build system tweaks for opensync-plugin, and added a buildgen.sh for it --- buildgen.sh | 2 ++ opensync-plugin/.cvsignore | 6 ------ opensync-plugin/AUTHORS | 2 ++ opensync-plugin/ChangeLog | 2 ++ opensync-plugin/buildgen.sh | 16 ++++++++++++++++ 5 files changed, 22 insertions(+), 6 deletions(-) create mode 100755 opensync-plugin/buildgen.sh diff --git a/buildgen.sh b/buildgen.sh index 30cc6f87..a4f67f61 100755 --- a/buildgen.sh +++ b/buildgen.sh @@ -7,6 +7,8 @@ if [ "$1" = "cleanall" ] ; then (cd gui && make distclean) (cd gui && ./buildgen.sh clean) + (cd opensync-plugin && make distclean) + (cd opensync-plugin && ./buildgen.sh clean) make distclean ./buildgen.sh clean elif [ "$1" = "clean" ] ; then diff --git a/opensync-plugin/.cvsignore b/opensync-plugin/.cvsignore index c470f66e..8b137891 100644 --- a/opensync-plugin/.cvsignore +++ b/opensync-plugin/.cvsignore @@ -1,7 +1 @@ -config.guess -config.sub -depcomp -install-sh -ltmain.sh -missing diff --git a/opensync-plugin/AUTHORS b/opensync-plugin/AUTHORS index 2dd8f2c7..59a657ce 100644 --- a/opensync-plugin/AUTHORS +++ b/opensync-plugin/AUTHORS @@ -1,3 +1,5 @@ Written by Chris Frey based on the example plugin skeleton from opensync +See ../AUTHORS for project-wide list. + diff --git a/opensync-plugin/ChangeLog b/opensync-plugin/ChangeLog index e69de29b..f1d0e812 100644 --- a/opensync-plugin/ChangeLog +++ b/opensync-plugin/ChangeLog @@ -0,0 +1,2 @@ + - see ../ChangeLog for details on progress + diff --git a/opensync-plugin/buildgen.sh b/opensync-plugin/buildgen.sh new file mode 100755 index 00000000..f58eebc1 --- /dev/null +++ b/opensync-plugin/buildgen.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +# +# Generates the build system. +# + +if [ "$1" = "clean" ] ; then + rm -rf autom4te.cache + rm -f Makefile.in aclocal.m4 config.guess config.h.in config.sub \ + configure depcomp install-sh ltmain.sh missing \ + src/Makefile.in +else + autoreconf -if + #autoreconf -ifv +fi + -- 2.11.4.GIT