summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorOlliver Schinagl <oliver@schinagl.nl>2016-02-05 10:36:22 (GMT)
committerOlliver Schinagl <oliver@schinagl.nl>2016-03-10 09:37:39 (GMT)
commit660f1a8cc94f7176f49d5021e7b979030c5ac42e (patch)
tree9de61b286e8bb59dd9f74280082c3dcac14b8585 /doc
parent398af5331bacd2e2aa4914e9926bf32d28cf8c14 (diff)
downloadengagement-660f1a8cc94f7176f49d5021e7b979030c5ac42e.zip
engagement-660f1a8cc94f7176f49d5021e7b979030c5ac42e.tar.gz
engagement-660f1a8cc94f7176f49d5021e7b979030c5ac42e.tar.bz2
Add empty eflprj generated skeleton project
Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am38
-rw-r--r--doc/engagement.1.in50
2 files changed, 88 insertions, 0 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
new file mode 100644
index 0000000..489fd9e
--- /dev/null
+++ b/doc/Makefile.am
@@ -0,0 +1,38 @@
+MAINTAINERCLEANFILES = Makefile.in
+EXTRA_DIST = engagement.1.in
+
+man_MANS = engagement.1
+
+
+.PHONY: doc
+
+PACKAGE_DOCNAME = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc
+
+if EFL_BUILD_DOC
+
+doc-clean:
+ rm -rf html/ latex/ man/ xml/ $(top_builddir)/$(PACKAGE_DOCNAME).tar*
+
+doc: all
+ $(efl_doxygen)
+ cp $(srcdir)/img/* html/
+ cp $(srcdir)/img/*.eps latex/
+ rm -rf $(PACKAGE_DOCNAME).tar*
+ mkdir -p $(PACKAGE_DOCNAME)/doc
+ cp -R html/ latex/ man/ $(PACKAGE_DOCNAME)/doc
+ tar cf $(PACKAGE_DOCNAME).tar $(PACKAGE_DOCNAME)/
+ bzip2 -9 $(PACKAGE_DOCNAME).tar
+ rm -rf $(PACKAGE_DOCNAME)/
+ mv $(PACKAGE_DOCNAME).tar.bz2 $(top_builddir)
+ @echo "Documentation Package: doc/$(PACKAGE_DOCNAME).tar.bz2"
+ @echo "Documentation HTML: doc/html"
+
+clean-local: doc-clean
+
+else
+
+doc:
+ @echo "Documentation not built. Run ./configure --help"
+
+endif
+
diff --git a/doc/engagement.1.in b/doc/engagement.1.in
new file mode 100644
index 0000000..10d8b65
--- /dev/null
+++ b/doc/engagement.1.in
@@ -0,0 +1,50 @@
+.TH ENGAGEMENT 1 "2016 02 04" "@PACKAGE_NAME@ @PACKAGE_VERSION@"
+
+.SH NAME
+engagement \- a demo application
+
+.SH SYNOPSIS
+.B engagement
+[-d] [-f] [-t=THEME] [-m=MINES] [-L] [-C] [-V] [-h]
+
+.SH DESCRIPTION
+
+Engagement is a demo application to show how to integrate EFL and autotools into a
+cross platform build. You should be able to generate an executable easily for all
+target supported by EFL with this engagement.
+
+With no option, the program starts and display an Hello World.
+
+
+.SH OPTIONS
+
+.TP
+.B -L, --license
+Show license.
+
+.TP
+.B -C, --copyright
+Show copyright.
+
+.TP
+.B -V, --version
+Show program version.
+
+.TP
+.B -h, --help
+Print list of options with short description.
+
+
+.SH BUGS
+
+Reports are welcome. Send them at @PACKAGE_BUGREPORT@.
+
+
+.SH HOMEPAGE
+
+http://git.schinagl.nl/engagement
+
+
+.SH AUTHORS
+
+Olliver Schinagl <oliver@schinagl.nl> and various contributors.