blob: b9a0b7f590d05ab5daac7ab4c34b4c955a87b2a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
## Process this file with automake to produce Makefile.in
DIST_SUBDIRS = src help
if BUILD_MINICOMMANDER_APPLET
SUBDIRS = src help
else
# we need to generate the alternative server file here
serverdir = $(libdir)/bonobo/servers
server_in_files = \
GNOME_MiniCommanderApplet.server.in
server_DATA = $(server_in_files:.server.in=.server)
@INTLTOOL_SERVER_RULE@
CLEANFILES = $(server_DATA)
endif
EXTRA_DIST = $(server_in_files)
|