32 lines
549 B
Makefile
32 lines
549 B
Makefile
|
## Process this file with automake to produce Makefile.in
|
||
|
## Created by Anjuta
|
||
|
|
||
|
SUBDIRS = src po
|
||
|
|
||
|
buttonmakerdocdir = ${prefix}/doc/buttonmaker
|
||
|
buttonmakerdoc_DATA = \
|
||
|
README\
|
||
|
COPYING\
|
||
|
AUTHORS\
|
||
|
ChangeLog\
|
||
|
INSTALL\
|
||
|
NEWS
|
||
|
|
||
|
|
||
|
INTLTOOL_FILES = intltool-extract.in \
|
||
|
intltool-merge.in \
|
||
|
intltool-update.in
|
||
|
|
||
|
EXTRA_DIST = $(buttonmakerdoc_DATA) \
|
||
|
$(INTLTOOL_FILES)
|
||
|
|
||
|
DISTCLEANFILES = intltool-extract \
|
||
|
intltool-merge \
|
||
|
intltool-update \
|
||
|
po/.intltool-merge-cache
|
||
|
|
||
|
|
||
|
# Remove doc directory on uninstall
|
||
|
uninstall-local:
|
||
|
-rm -r $(buttonmakerdocdir)
|