Add Makefile
authorOlivier Crête <olivier.crete@collabora.com>
Sun, 9 Oct 2016 14:39:20 +0000 (16:39 +0200)
committerOlivier Crête <olivier.crete@collabora.com>
Sun, 9 Oct 2016 14:42:06 +0000 (16:42 +0200)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..d21c078
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,31 @@
+HOTDOC ?= hotdoc
+prefix ?= /usr
+datadir ?= ${prefix}/share
+devhelpdir ?= ${datadir}/devhelp/books
+docdir ?= ${datadir}/doc/${PACKAGE}
+htmldir ?= ${docdir}
+
+# emulate Automake well enough for hotdoc.mk
+AM_V_GEN ?=
+AMTAR ?= tar
+mkinstalldirs ?= install -d
+srcdir = $(CURDIR)
+top_srcdir = $(CURDIR)
+builddir = $(CURDIR)
+top_builddir = $(CURDIR)
+
+HOTDOC_PROJECTS = gst-docs
+
+gst_docs_HOTDOC_FLAGS = \
+       --conf-file hotdoc.json \
+       $(NULL)
+
+all:
+
+install:
+
+clean:
+
+.PHONY: all install clean
+
+-include $(shell $(HOTDOC) --makefile-path)