forked from lanoxx/tilda
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
63 lines (49 loc) · 1.14 KB
/
Makefile.am
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
56
57
58
59
60
61
62
63
## Process this file with automake to produce a Makefile.in
# vim: set noexpandtab ts=8 sts=8 sw=8:
SUBDIRS = po
CLEANFILES = tilda.desktop
MAINTAINERCLEANFILES = \
ABOUT-NLS \
Makefile.in \
aclocal.m4 \
stamp-h1 \
missing \
install-sh \
decomp \
compile \
INSTALL \
m4/*.m4 \
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 \
config.h.in \
config.h.in~
Applicationsdir = ${datadir}/applications
Applications_DATA = tilda.desktop
Appdatadir = ${datadir}/metainfo
Appdata_DATA = tilda.appdata.xml
Pixmapsdir = ${datadir}/pixmaps
Pixmaps_DATA = tilda.png
EXTRA_DIST = tilda.desktop.in tilda.png tilda.appdata.xml README.md
tilda.desktop: tilda.desktop.in
sed -e 's|\@BINDIR\@|$(bindir)|' \
-e 's|\@PIXMAPSDIR\@|$(Pixmapsdir)|' $< > $@
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
bin_PROGRAMS =
man1_MANS =
include data/Makefile.am
include src/Makefile.am