Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/browser/Makefile.am
blob: d55bbfabd75e04374a236e212032731a3be864f0 (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
sugardir = $(pythondir)/sugar
sugar_PYTHON = browser.py

icondir = $(pkgdatadir)
icon_DATA =		\
	fold.png	\
	unfold.png

# Dbus service file
servicedir = $(datadir)/dbus-1/services
service_in_files = com.redhat.Sugar.Browser.service.in
service_DATA = $(service_in_files:.service.in=.service)
 
# Rule to make the service file with bindir expanded
$(service_DATA): $(service_in_files) Makefile
	@sed -e "s|\@bindir\@|$(bindir)|" $< > $@

EXTRA_DIST =			\
	$(service_in_files)	\
	$(service_DATA)         \
	$(icon_DATA)

DISTCLEANFILES =		\
	$(service_DATA)