From 1191de6c6605f5e36c481369aa0ad7791083d79b Mon Sep 17 00:00:00 2001 From: Rickey Visinski Date: Thu, 21 Aug 2014 17:14:43 -0400 Subject: [PATCH 1/2] Added files for buildbot * Added missing 'missing' and 'compile' files * Added dist rule so binaries are included in tarball --- compile | 0 missing | 0 src/Makefile.am | 3 +++ 3 files changed, 3 insertions(+) create mode 100644 compile create mode 100644 missing diff --git a/compile b/compile new file mode 100644 index 0000000..e69de29 diff --git a/missing b/missing new file mode 100644 index 0000000..e69de29 diff --git a/src/Makefile.am b/src/Makefile.am index c31da74..30ce9fb 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,5 +1,7 @@ bin_PROGRAMS = fvsearch fvscreenshot fvtestimagecompare +EXTRA_DIST = $(bin_PROGRAMS) + fvtestimagecompare_SOURCES = test_image_compare.cpp image_process.cpp image_process.hpp fvtestimagecompare_CPPFLAGS = $(X11_CFLAGS) $(FFMPEG_CFLAGS) fvtestimagecompare_LDADD = $(BOOST_PROGRAM_OPTIONS_LIB) $(X11_LIBS) @@ -11,3 +13,4 @@ fvsearch_LDADD = $(BOOST_PROGRAM_OPTIONS_LIB) $(X11_LIBS) $(FFMPEG_LIBS) fvscreenshot_SOURCES = screenshot.cpp image_process.cpp video_process.cpp image_process.hpp video_process.hpp fvscreenshot_CPPFLAGS = $(X11_CFLAGS) $(FFMPEG_CFLAGS) fvscreenshot_LDADD = $(BOOST_PROGRAM_OPTIONS_LIB) $(X11_LIBS) $(FFMPEG_LIBS) + From d982723fde9d4a048a236433b8bcf3c0d0279165 Mon Sep 17 00:00:00 2001 From: Rickey Visinski Date: Thu, 21 Aug 2014 18:06:53 -0400 Subject: [PATCH 2/2] automake all the things --- .gitignore | 19 +++++++++++++++++++ src/Makefile.in | 1 + 2 files changed, 20 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa39656 --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +Makefile +autom4te.cache/ +config.log +config.status +fastvideo-0.1.tar.gz +src/.deps/ +src/Makefile +src/fvscreenshot +src/fvscreenshot-image_process.o +src/fvscreenshot-screenshot.o +src/fvscreenshot-video_process.o +src/fvsearch +src/fvsearch-image_process.o +src/fvsearch-search.o +src/fvsearch-video_process.o +src/fvtestimagecompare +src/fvtestimagecompare-image_process.o +src/fvtestimagecompare-test_image_compare.o +stamp-h1 diff --git a/src/Makefile.in b/src/Makefile.in index aba2782..89be7c5 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -285,6 +285,7 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ +EXTRA_DIST = $(bin_PROGRAMS) fvtestimagecompare_SOURCES = test_image_compare.cpp image_process.cpp image_process.hpp fvtestimagecompare_CPPFLAGS = $(X11_CFLAGS) $(FFMPEG_CFLAGS) fvtestimagecompare_LDADD = $(BOOST_PROGRAM_OPTIONS_LIB) $(X11_LIBS)