blob: 99f12d62bae0ae6d3ca34e047a3ce7fb320fa5d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
## Process this file with automake to produce Makefile.in
DIST_SUBDIRS = src help
server_in_files = \
MATE_MiniCommanderApplet.server.in
if BUILD_MINICOMMANDER_APPLET
SUBDIRS = src help
else
# we need to generate the alternative server file here
serverdir = $(libdir)/matecomponent/servers
server_DATA = $(server_in_files:.server.in=.server)
@INTLTOOL_SERVER_RULE@
CLEANFILES = $(server_DATA)
endif
EXTRA_DIST = $(server_in_files)
-include $(top_srcdir)/git.mk
|