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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
## Process this file with automake to produce a Makefile.in
# vim: set noexpandtab ts=8 sts=8 sw=8:
AUTOMAKE_OPTIONS = gnu
SUBDIRS = po m4 src
CLEANFILES = tilda.desktop
MAINTAINERCLEANFILES = \
ABOUT-NLS \
Makefile.in \
aclocal.m4 \
stamp-h1 \
missing \
install-sh \
decomp \
compile \
INSTALL \
m4/*.m4 \
tilda-config.h \
config.guess \
config.rpath \
config.sub \
configure \
depcomp \
m4/Makefile.in \
po/Makefile.in.in \
po/Makevars.template \
po/Rules-quot \
po/boldquot.sed \
po/en@boldquot.header \
po/en@quot.header \
po/insert-header.sin \
po/quot.sed \
po/remove-potcdate.sin \
po/tilda.pot \
tilda-config.h.in \
tilda-config.h.in~
Applicationsdir = ${datadir}/applications
Applications_DATA = tilda.desktop
Pixmapsdir = ${datadir}/pixmaps
Pixmaps_DATA = tilda.png
pkgdata_DATA = tilda.glade
EXTRA_DIST = tilda.desktop.in tilda.png tilda.glade
tilda.desktop: tilda.desktop.in
sed -e 's|\@BINDIR\@|$(bindir)|' \
-e 's|\@PIXMAPSDIR\@|$(Pixmapsdir)|' $< > $@
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|