You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
535 B
Makefile
33 lines
535 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = po include lib
|
|
|
|
libtdatadocdir = ${prefix}/doc/libtdata
|
|
libtdatadoc_DATA = \
|
|
README\
|
|
COPYING\
|
|
AUTHORS\
|
|
ChangeLog\
|
|
INSTALL\
|
|
NEWS
|
|
|
|
|
|
INTLTOOL_FILES = intltool-extract.in \
|
|
intltool-merge.in \
|
|
intltool-update.in
|
|
|
|
EXTRA_DIST = $(libtdatadoc_DATA) \
|
|
$(INTLTOOL_FILES)
|
|
|
|
DISTCLEANFILES = intltool-extract \
|
|
intltool-merge \
|
|
intltool-update \
|
|
po/.intltool-merge-cache
|
|
|
|
clean-local:
|
|
|
|
|
|
# Remove doc directory on uninstall
|
|
uninstall-local:
|
|
-rm -r $(libtdatadocdir)
|