mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
Add Makefile
This commit is contained in:
parent
12e59c833d
commit
cfb86b8c52
1 changed files with 31 additions and 0 deletions
31
Makefile
Normal file
31
Makefile
Normal file
|
@ -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)
|
Loading…
Reference in a new issue