forked from Motion-Project/motion
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Revise directory structure * Update translation files and mmal * Test for sys/videoio.h * Revise sysconfdir specification * Update defines to match configure * v4l2 configure, translations * Update travis * Updated tests for travis * Updated 16.04 and fewer checks * Update travis for Mac * Move CODE_STANDARD and delete test_builds.sh * Update documentation
- Loading branch information
1 parent
be08380
commit 0dc2ae9
Showing
115 changed files
with
16,099 additions
and
16,220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,64 @@ | ||
Makefile | ||
Makefile.in | ||
ABOUT-NLS | ||
compile | ||
config.guess | ||
config.h | ||
motion | ||
motion.init-Debian | ||
motion.init-FreeBSD.sh | ||
motion.service | ||
motion.spec | ||
motion-dist.conf | ||
camera1-dist.conf | ||
camera2-dist.conf | ||
camera3-dist.conf | ||
camera4-dist.conf | ||
config.h.in | ||
config.h.in~ | ||
config.log | ||
config.rpath | ||
config.status | ||
config.sub | ||
configure | ||
autom4te.cache | ||
aclocal.m4 | ||
depcomp | ||
install-sh | ||
m4/ | ||
missing | ||
stamp-h1 | ||
|
||
#data | ||
data/motion.service | ||
data/motion-dist.conf | ||
data/camera1-dist.conf | ||
data/camera2-dist.conf | ||
data/camera3-dist.conf | ||
data/camera4-dist.conf | ||
|
||
# automake | ||
*.o | ||
#src | ||
src/*.o | ||
src/motion | ||
src/Makefile | ||
src/Makefile.in | ||
src/.deps/ | ||
src/Makefile | ||
src/Makefile.in | ||
src/raspicam/*.o | ||
src/raspicam/.dirstamp | ||
src/raspicam/.deps/ | ||
*.log | ||
.depend | ||
autom4te.cache | ||
aclocal.m4 | ||
config.status | ||
configure | ||
config.h.in | ||
|
||
#po | ||
po/*.mo | ||
.vscode/ | ||
po/*.gmo | ||
po/Makefile | ||
po/Makefile.in | ||
po/Makefile.in.in | ||
po/Makevars.template | ||
po/POTFILES | ||
po/Rules-quot | ||
po/boldquot.sed | ||
po/[email protected] | ||
po/[email protected] | ||
po/insert-header.sin | ||
po/quot.sed | ||
po/motion.pot | ||
po/remove-potcdate.sed | ||
po/remove-potcdate.sin | ||
po/stamp-po | ||
|
||
.vscode/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
ACLOCAL_AMFLAGS = -I m4 | ||
|
||
SUBDIRS = src po man | ||
|
||
sysconfdir = @sysconfdir@/$(PACKAGE) | ||
sysconf_DATA = \ | ||
data/motion-dist.conf \ | ||
data/camera1-dist.conf \ | ||
data/camera2-dist.conf \ | ||
data/camera3-dist.conf \ | ||
data/camera4-dist.conf | ||
|
||
man_MANS = man/motion.1 | ||
|
||
docdir = $(datadir)/doc/@PACKAGE@ | ||
doc_DATA = \ | ||
doc/mask1.png \ | ||
doc/normal.jpg \ | ||
doc/outputmotion1.jpg \ | ||
doc/outputnormal1.jpg \ | ||
doc/motion_guide.html \ | ||
doc/motion_stylesheet.css \ | ||
doc/COPYING \ | ||
doc/CREDITS \ | ||
doc/motion_build.html \ | ||
doc/motion_config.html | ||
|
||
################################################################### | ||
## Create pristine directories to match exactly distributed files | ||
################################################################### | ||
cleanall: distclean | ||
@rm -rf autom4te.cache m4 | ||
@rm -f config.h.in config.h.in~ aclocal.m4 config.sub ABOUT-NLS missing | ||
@rm -f compile config.guess config.rpath configure depcomp install-sh | ||
@rm -f po/[email protected] po/[email protected] po/insert-header.sin | ||
@rm -f po/Makevars.template po/quot.sed po/remove-potcdate.sin | ||
@rm -f po/Rules-quot po/stamp-po po/*.gmo po/motion.pot po/boldquot.sed | ||
@rm -f Makefile.in src/Makefile.in po/Makefile.in.in man/Makefile.in | ||
@rm -f data/motion.service data/motion-dist.conf | ||
@rm -f data/camera1-dist.conf data/camera2-dist.conf | ||
@rm -f data/camera3-dist.conf data/camera4-dist.conf | ||
|
||
################################################################### | ||
## Clean out the tilde crumb files left by gettext autotool processing | ||
################################################################### | ||
all-local: | ||
@rm -f po/*.po\~ | ||
|
||
################################################################### | ||
## Update contents of sample files with the correct directory | ||
################################################################### | ||
install-data-local: | ||
@sed -e 's|$${prefix}|$(prefix)|' ${sysconfdir}/motion-dist.conf > ${sysconfdir}/motion-dist.conf.tmp && mv -f ${sysconfdir}/motion-dist.conf.tmp ${sysconfdir}/motion-dist.conf | ||
@sed -e 's|$${prefix}|$(prefix)|' ${sysconfdir}/camera1-dist.conf > ${sysconfdir}/camera1-dist.conf.tmp && mv -f ${sysconfdir}/camera1-dist.conf.tmp ${sysconfdir}/camera1-dist.conf | ||
@sed -e 's|$${prefix}|$(prefix)|' ${sysconfdir}/camera2-dist.conf > ${sysconfdir}/camera2-dist.conf.tmp && mv -f ${sysconfdir}/camera2-dist.conf.tmp ${sysconfdir}/camera2-dist.conf | ||
@sed -e 's|$${prefix}|$(prefix)|' ${sysconfdir}/camera3-dist.conf > ${sysconfdir}/camera3-dist.conf.tmp && mv -f ${sysconfdir}/camera3-dist.conf.tmp ${sysconfdir}/camera3-dist.conf | ||
@sed -e 's|$${prefix}|$(prefix)|' ${sysconfdir}/camera4-dist.conf > ${sysconfdir}/camera4-dist.conf.tmp && mv -f ${sysconfdir}/camera4-dist.conf.tmp ${sysconfdir}/camera4-dist.conf | ||
|
||
@sed -e 's|$${exec_prefix}|$(exec_prefix)|' data/motion.service > data/motion.service.tmp && mv -f data/motion.service.tmp data/motion.service | ||
|
||
@sed -e 's|$${prefix}|$(prefix)|' data/motion-dist.conf > data/motion-dist.conf.tmp && mv -f data/motion-dist.conf.tmp data/motion-dist.conf | ||
@sed -e 's|$${prefix}|$(prefix)|' data/camera1-dist.conf > data/camera1-dist.conf.tmp && mv -f data/camera1-dist.conf.tmp data/camera1-dist.conf | ||
@sed -e 's|$${prefix}|$(prefix)|' data/camera2-dist.conf > data/camera2-dist.conf.tmp && mv -f data/camera2-dist.conf.tmp data/camera2-dist.conf | ||
@sed -e 's|$${prefix}|$(prefix)|' data/camera3-dist.conf > data/camera3-dist.conf.tmp && mv -f data/camera3-dist.conf.tmp data/camera3-dist.conf | ||
@sed -e 's|$${prefix}|$(prefix)|' data/camera4-dist.conf > data/camera4-dist.conf.tmp && mv -f data/camera4-dist.conf.tmp data/camera4-dist.conf | ||
|
||
check: | ||
./configure --with-prototype-flags && $(MAKE) clean && $(MAKE) | ||
./configure --with-prototype-flags --without-mariadb && $(MAKE) clean && $(MAKE) | ||
./configure --with-prototype-flags --without-ffmpeg && $(MAKE) clean && $(MAKE) | ||
./configure --with-prototype-flags --without-mysql && $(MAKE) clean && $(MAKE) | ||
./configure --with-prototype-flags --without-mariadb && $(MAKE) clean && $(MAKE) | ||
./configure --with-prototype-flags --without-sqlite3 && $(MAKE) clean && $(MAKE) | ||
./configure --with-prototype-flags --without-pgsql && $(MAKE) clean && $(MAKE) | ||
./configure --with-prototype-flags --without-v4l2 && $(MAKE) clean && $(MAKE) | ||
./configure --with-prototype-flags --without-webp && $(MAKE) clean && $(MAKE) | ||
./configure --with-developer-flags \ | ||
--without-mysql \ | ||
--without-mariadb \ | ||
&& $(MAKE) clean && $(MAKE) | ||
./configure --with-developer-flags \ | ||
--without-mysql \ | ||
--without-mariadb \ | ||
--without-sqlite3 \ | ||
--without-pgsql \ | ||
&& $(MAKE) clean && $(MAKE) |
Oops, something went wrong.