File: Makefile.am

package info (click to toggle)
gwget2 0.99-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 3,012 kB
  • ctags: 441
  • sloc: sh: 8,801; ansic: 4,378; makefile: 144; xml: 15
file content (30 lines) | stat: -rw-r--r-- 935 bytes parent folder | download
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
## Process this file with automake to produce Makefile.in

gwget_datadir = $(datadir)/@PACKAGE@

gwget_data_DATA = \
	preferences.glade\
	gwget.glade

                                                                                                            
# Dbus service file
servicedir = $(datadir)/dbus-1/services
service_in_files = org.gnome.gwget.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)|" $< > $@

schemasdir = $(GCONF_SCHEMA_FILE_DIR)
schemas_in_files = gwget.schemas.in
schemas_DATA =  $(schemas_in_files:.schemas.in=.schemas)
@INTLTOOL_SCHEMAS_RULE@


install-data-local:
	GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule gwget.schemas

EXTRA_DIST = $(gwget_data_DATA) \
	     $(service_in_files) \
	     $(schemas_in_files)