From 42b3e12180b230caf5c0fecb2cb21a8e7b1c7077 Mon Sep 17 00:00:00 2001 From: Christian Thaeter Date: Mon, 13 Aug 2007 21:36:22 +0200 Subject: [PATCH] merge in progress, some files left out --- Makefile.am | 44 ++++++++++++++++++++++++++++++++++++++++++ src/lib/Makefile.am | 24 +++++++++++++++++++++++ tests/99examples.tests | 5 +++++ 3 files changed, 73 insertions(+) create mode 100644 Makefile.am create mode 100644 src/lib/Makefile.am create mode 100644 tests/99examples.tests diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 000000000..fbaecd794 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,44 @@ +# Copyright (C) CinelerraCV +# 2007, Christian Thaeter +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +bin_PROGRAMS = +lib_LTLIBRARIES = +noinst_PROGRAMS = +noinst_LIBRARIES = +noinst_LTLIBRARIES = +noinst_HEADERS = +BUILT_SOURCES = +EXTRA_DIST = +SUBDIRS = + +# Only use subdirs if really needed, prefer the include scheme below +#SUBDIRS += + +# core +include $(top_srcdir)/src/lib/Makefile.am + +# plugins +#include $(top_srcdir)/src... + +# tests +include $(top_srcdir)/tests/examples/Makefile.am + +#EXTRA_DIST += admin debian doc depcomp README.BUILD LICENSE \ +# cinelerra-cvs-current.spec +AUTOMAKE_OPTIONS=foreign +#ACLOCAL_AMFLAGS = -I m4 + diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am new file mode 100644 index 000000000..b6c493a18 --- /dev/null +++ b/src/lib/Makefile.am @@ -0,0 +1,24 @@ +# Copyright (C) CinelerraCV +# 2007, Christian Thaeter +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +libcin3_a_srcdir = $(top_srcdir)/src/lib +noinst_LIBRARIES += libcin3.a + +libcin3_a_CFLAGS = $(CFLAGS) -std=gnu99 -Wall -Werror + +libcin3_a_SOURCES = $(libcin3_a_srcdir)/plugin.c +noinst_HEADERS += $(libcin3_a_srcdir)/plugin.h diff --git a/tests/99examples.tests b/tests/99examples.tests new file mode 100644 index 000000000..ef7cb1aff --- /dev/null +++ b/tests/99examples.tests @@ -0,0 +1,5 @@ +TESTING "test plugin example code" ./plugin_example + +TEST "plugin example" <