~ubuntu-branches/ubuntu/oneiric/gconf/oneiric-proposed

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Takuo KITAME
  • Date: 2002-03-17 01:51:39 UTC
  • Revision ID: james.westby@ubuntu.com-20020317015139-z4f8fdg1hoe049g0
Tags: upstream-1.0.9
ImportĀ upstreamĀ versionĀ 1.0.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
SUBDIRS = gconf backends wrappers po doc examples standard-schemas
 
3
DIST_SUBDIRS=tests $(SUBDIRS)
 
4
 
 
5
EXTRA_DIST=gconf-config.in gconf.m4.in gconf.spec.in gconf.spec TODO \
 
6
        gconf.pc gconfgtk.pc
 
7
 
 
8
install-exec-local:
 
9
        $(INSTALL_SCRIPT) gconf-config $(DESTDIR)$(bindir)/gconf-config-$(MAJOR_VERSION)
 
10
        (cd $(DESTDIR)$(bindir) && $(LN_S) -f gconf-config-$(MAJOR_VERSION) gconf-config)
 
11
 
 
12
install-data-local:
 
13
        -mkdir -p $(DESTDIR)$(datadir)/aclocal
 
14
        $(INSTALL_DATA) gconf.m4 $(DESTDIR)$(datadir)/aclocal/gconf-$(MAJOR_VERSION).m4
 
15
        -mkdir -p $(DESTDIR)$(sysconfdir)/gconf/gconf.xml.defaults
 
16
        -chmod 755 $(DESTDIR)$(sysconfdir)/gconf/gconf.xml.defaults
 
17
        -mkdir -p $(DESTDIR)$(sysconfdir)/gconf/gconf.xml.mandatory
 
18
        -chmod 755 $(DESTDIR)$(sysconfdir)/gconf/gconf.xml.mandatory
 
19
 
 
20
install-schemas:
 
21
        (cd standard-schemas && $(MAKE) $(AM_MAKEFLAGS) install-schemas)
 
22
 
 
23
pkgconfigdir = $(libdir)/pkgconfig
 
24
pkgconfig_DATA = gconf.pc gconfgtk.pc
 
25