forked from gobby/gobby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
89 lines (71 loc) · 2.3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
SUBDIRS = m4 win32 code . icons po
if HAVE_GNOME_DOC_UTILS
SUBDIRS += help
endif
# Tell aclocal where to find `.m4' files.
ACLOCAL_AMFLAGS = -I m4
dist_man_MANS = gobby-0.5.1
bin_PROGRAMS = gobby-0.5
gobby_0_5_LDADD = \
code/libgobby.a \
code/commands/libgobby-commands.a \
code/commands/file-tasks/libgobby-file-tasks.a \
code/operations/libgobby-operations.a \
code/dialogs/libgobby-dialogs.a \
code/core/libgobby-core.a \
code/util/libgobby-util.a \
$(gobby_LIBS) \
$(unique_LIBS) \
$(infinote_LIBS) \
$(LIBS)
if WIN32
gobby_0_5_LDADD += -lws2_32
gobby_0_5_LDFLAGS = \
-Wl,--enable-runtime-pseudo-reloc \
-mwindows \
win32/gobby.res
endif
gobby_0_5_SOURCES =
# .desktop file
if !WIN32
desktopdir = $(datadir)/applications
desktop_in_files = gobby-0.5.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
appdatadir = $(datadir)/appdata
appdata_DATA = gobby-0.5.appdata.xml
endif
clean-local:
-rm -rf gobby-0.5.desktop
@INTLTOOL_DESKTOP_RULE@
# Dummy C++ source to cause C++ linking, otherwise some platforms don't link
# correctly against libstdc++. See also #399. Note that this file does not
# (need to) exist in the source tree.
nodist_EXTRA_gobby_0_5_SOURCES = dummy.cpp
# Debian seems to need an XPM of the program icon, so we provide one here.
# It's currently not used for anything else, though.
EXTRA_DIST = gobby-0.5.xpm
# For the manual
EXTRA_DIST += gnome-doc-utils.make gobby-0.5.desktop.in
DISTCLEANFILES = gnome-doc-utils.make
DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper
MAINTAINERCLEANFILES = \
ChangeLog
distclean-local:
if test "$(srcdir)" = "."; then :; else \
rm -f ChangeLog; \
fi
ChangeLog:
$(AM_V_GEN) if test -d "$(srcdir)/.git"; then \
(GIT_DIR=$(top_srcdir)/.git ./missing --run git log \
6570cc49a6c2c29fe9cf4c85e3b74f133ae4c1f8..HEAD --stat=78) \
| fmt --split-only --width=78 > [email protected] \
&& cat [email protected] ChangeLog.manual ChangeLog.pre-0.5 > $@ && $(RM) [email protected] \
|| ($(RM) [email protected]; \
echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
(test -f $@ || echo git-log is required to generate this file >> $@)); \
else \
test -f $@ || \
(echo A git checkout and git-log is required to generate ChangeLog >&2 && \
echo A git checkout and git-log is required to generate this file >> $@); \
fi
.PHONY: ChangeLog