~ubuntu-branches/ubuntu/trusty/libuser/trusty

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Ghe Rivero
  • Date: 2008-03-11 17:40:21 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080311174021-vngcaurluxihaht4
Tags: 1:0.56.8.dfsg.1-1
* New upstream release
* New download homepage at copyright file
* Lintian clean: copyright-without-copyright-notice 

Show diffs side-by-side

added added

removed removed

Lines of Context:
398
398
GOBJECT_CFLAGS = @GOBJECT_CFLAGS@
399
399
GOBJECT_LIBS = @GOBJECT_LIBS@
400
400
GREP = @GREP@
 
401
GTKDOC_CHECK = @GTKDOC_CHECK@
401
402
HTML_DIR = @HTML_DIR@
402
403
INSTALL = @INSTALL@
403
404
INSTALL_DATA = @INSTALL_DATA@
504
505
pkgconfigdir = $(libdir)/pkgconfig
505
506
ACLOCAL_AMFLAGS = -I m4
506
507
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --with-ldap
507
 
CVSTAG = "libuser-$$(echo '$(VERSION)' | tr '.' '_')"
 
508
HGTAG = 'libuser-$(VERSION)'
508
509
AM_CPPFLAGS = $(GOBJECT_CFLAGS)
509
510
LOCALEDIR_CPPFLAGS = -DLOCALEDIR='"$(localedir)"'
510
511
PYTHON_CPPFLAGS = -I/usr/include/python$(PYTHON_VERSION)
516
517
        python/modules.txt \
517
518
        samples/genusers \
518
519
        tests/config.conf.in tests/config_default_useradd \
519
 
        tests/config_import.conf.in tests/config_login.defs \
 
520
        tests/config_import.conf.in tests/config_import2.conf.in \
 
521
        tests/config_login.defs tests/config_login2.defs \
520
522
        tests/config_override.conf.in tests/config_test.sh \
521
523
        tests/files.conf.in tests/files_test tests/files_test.py \
522
524
        tests/ldap.conf.in tests/ldaprc tests/ldap_skel.ldif tests/ldap_test \
523
 
        tests/ldap_test.py tests/slapd.conf.in tests/utils.conf.in \
524
 
        tests/utils_group tests/utils_gshadow tests/utils_passwd \
525
 
        tests/utils_shadow tests/utils_test
 
525
        tests/ldap_test.py \
 
526
        tests/pwhash.conf.in tests/pwhash.py tests/pwhash_test \
 
527
        tests/slapd.conf.in \
 
528
        tests/utils.conf.in tests/utils_group tests/utils_gshadow \
 
529
        tests/utils_passwd tests/utils_shadow tests/utils_test
526
530
 
527
531
noinst_LTLIBRARIES = apps/libapputil.la
528
532
lib_LTLIBRARIES = lib/libuser.la
2078
2082
 
2079
2083
 
2080
2084
force-tag:
2081
 
        cd $(top_srcdir); cvs tag -cFR $(CVSTAG) .
 
2085
        cd $(top_srcdir); hg tag -f $(HGTAG)
2082
2086
 
2083
2087
tag:
2084
 
        cd $(top_srcdir); cvs tag -cR $(CVSTAG) .
 
2088
        cd $(top_srcdir); hg tag $(HGTAG)
2085
2089
 
2086
2090
archive:
2087
2091
        rm -fr /tmp/$(PACKAGE)-export-tmp
2088
 
        CVSROOT=`cat $(top_srcdir)/CVS/Root`; cd /tmp; cvs -d $$CVSROOT \
2089
 
                 export -r $(CVSTAG) -d $(PACKAGE)-export-tmp $(PACKAGE)
 
2092
        hg clone -r $(HGTAG) $(abs_top_srcdir) /tmp/$(PACKAGE)-export-tmp
2090
2093
        cd /tmp/$(PACKAGE)-export-tmp; ./autogen.sh ; \
2091
2094
                ./configure --sysconfdir=/etc --with-ldap --enable-gtk-doc \
2092
2095
                --without-sasl; make -C docs/reference; make dist