-
Notifications
You must be signed in to change notification settings - Fork 52
/
Makefile.am
59 lines (46 loc) · 1.34 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
AUTOMAKE_OPTIONS = foreign subdir-objects
ACLOCAL_AMFLAGS = -I m4
CLEANFILES = repsnapper.desktop
DISTCLEANFILES = tools/gitversion.sh
BUILT_SOURCES = tools/gitversion.sh
EXTRA_DIST = \
README.asciidoc \
HACKING \
repsnapper.desktop.in \
README.win32 \
licenses/BSL-1.0.txt \
licenses/GPL-2.0.txt \
licenses/LGPL-2.0.txt \
licenses/MIT.txt \
licenses/vmmlib-license.txt
Applicationsdir = $(datadir)/applications/
Applications_in_files = repsnapper.desktop.in
Applications_DATA = repsnapper.desktop
if WIN32_BUILD
WIN32_FILES = README.win32 licenses/GPL-2.0.txt
else
WIN32_FILES =
endif
win32extrasdir = $(prefix)
win32extras_DATA = $(WIN32_FILES)
@INTLTOOL_DESKTOP_RULE@
# AppData support
@INTLTOOL_XML_RULE@
appdatadir = $(datadir)/metainfo
appdata_DATA = $(appdata_in_files:.xml.in=.xml)
appdata_in_files = repsnapper.appdata.xml.in
EXTRA_DIST += $(appdata_in_files)
CLEANFILES += $(appdata_DATA)
-include $(top_srcdir)/git.mk
noinst_LTLIBRARIES =
include libraries/Makefile.am
include src/Makefile.am
# po doesn't use automake, so it can't be included.
SUBDIRS = po
JUNK = .deps .pc Makefile.in aclocal.m4 compile \
config.guess config.h.in config.sub configure \
depcomp install-sh ltmain.sh m4 missing
autoclean: maintainer-clean
ifneq ($(wildcard ${JUNK}),)
rm -r $(wildcard ${JUNK})
endif