blob: bf094f0d282b3bf36c6c8493129eeca15b92b483 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# process this file with automake to create a Makefile.in
SUBDIRS = src tools doc
pkgconfigdir = @libdir@/pkgconfig
pkgconfig_DATA = libraw1394.pc
EXTRA_DIST = libraw1394.pc libraw1394.spec
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure config.h.in stamp-h.in \
depcomp install-sh missing mkinstalldirs config.guess ltmain.sh
doc: psdoc pdfdoc htmldoc
psdoc:
$(MAKE) -C doc psdoc
pdfdoc:
$(MAKE) -C doc pdfdoc
htmldoc:
$(MAKE) -C doc htmldoc
.PHONY: doc psdoc pdfdoc htmldoc
dist-hook:
git log >$(distdir)/ChangeLog
|