Edit

kc3-lang/pkgconf/Makefile.am

Branch :

  • Show log

    Commit

  • Author : William Pitcock
    Date : 2017-02-25 13:57:38
    Hash : a3fa9732
    Message : testsuite: add testsuite cases for inverse quoting situations

  • Makefile.am
  • libdir                 = @libdir@
    datarootdir            = @datarootdir@
    datadir                = @datadir@
    includedir             = @includedir@
    system_includedir      = @SYSTEM_INCLUDEDIR@
    system_libdir          = @SYSTEM_LIBDIR@
    pkg_default_dir        = @PKGCONFIGDIR@
    pkgconfigdir           = $(libdir)/pkgconfig
    nodist_pkgconfig_DATA  = libpkgconf.pc
    
    AM_CFLAGS = -Wall -Wextra -Wformat=2 -std=gnu99 -DPKG_DEFAULT_PATH=\"$(pkg_default_dir)\" -DSYSTEM_INCLUDEDIR=\"$(system_includedir)\" -DSYSTEM_LIBDIR=\"$(system_libdir)\"
    
    bin_PROGRAMS = pkgconf
    lib_LTLIBRARIES = libpkgconf.la
    
    EXTRA_DIST =	pkg.m4 \
    		tests/lib-relocatable/lib/pkgconfig/foo.pc \
    		tests/lib1/argv-parse-2.pc \
    		tests/lib1/dos-lineendings.pc \
    		tests/lib1/paren-quoting.pc \
    		tests/lib1/argv-parse-3.pc \
    		tests/lib1/foo.pc \
    		tests/lib1/prefix-foo1.pc \
    		tests/lib1/argv-parse.pc \
    		tests/lib1/framework-1.pc \
    		tests/lib1/prefix-foo2.pc \
    		tests/lib1/bar.pc \
    		tests/lib1/framework-2.pc \
    		tests/lib1/private-libs-duplication.pc \
    		tests/lib1/baz.pc \
    		tests/lib1/incomplete.pc \
    		tests/lib1/quotes.pc \
    		tests/lib1/case-sensitivity.pc \
    		tests/lib1/intermediary-1.pc \
    		tests/lib1/static-archive-libs.pc \
    		tests/lib1/cflags-libs-only.pc \
    		tests/lib1/intermediary-2.pc \
    		tests/lib1/static-libs.pc \
    		tests/lib1/circular-1.pc \
    		tests/lib1/missing-require.pc \
    		tests/lib1/sysroot-dir.pc \
    		tests/lib1/circular-2.pc \
    		tests/lib1/multiline.pc \
    		tests/lib1/tilde-quoting.pc \
    		tests/lib1/circular-3.pc \
    		tests/lib1/no-trailing-newline.pc \
    		tests/lib1/tilde.pc \
    		tests/lib1/comments-in-fields.pc \
    		tests/lib1/nocflag.pc \
    		tests/lib1/typelibdir.pc \
    		tests/lib2/foo.pc \
    		tests/lib1/comments.pc \
    		tests/lib1/nolib.pc \
    		tests/lib3/bar.pc \
    		tests/lib1/conflicts.pc \
    		tests/lib1/omg-uninstalled.pc \
    		tests/lib1/isystem.pc \
    		tests/lib1/idirafter.pc \
    		tests/lib1/idirafter-ordering.pc \
    		tests/lib1/depgraph-break.pc \
    		tests/lib1/cflags-whitespace.pc \
    		tests/lib1/cflags-whitespace-trailing.pc \
    		tests/lib1/provides.pc \
    		tests/lib1/provides-request-simple.pc \
    		tests/lib1/flag-order-1.pc \
    		tests/lib1/flag-order-3.pc \
    		tests/lib1/variable-whitespace.pc \
    		tests/lib1/fragment-quoting.pc \
    		tests/lib1/fragment-quoting-2.pc \
    		tests/lib1/fragment-quoting-3.pc \
    		tests/lib1/fragment-quoting-4.pc \
    		tests/lib1/fragment-quoting-5.pc \
    		tests/lib1/fragment-quoting-6.pc \
    		tests/test_env.sh \
    		$(test_scripts) \
    		doc/conf.py \
    		doc/extract.py \
    		doc/index.rst \
    		doc/libpkgconf.rst \
    		doc/libpkgconf-argvsplit.rst \
    		doc/libpkgconf-audit.rst \
    		doc/libpkgconf-cache.rst \
    		doc/libpkgconf-client.rst \
    		doc/libpkgconf-dependency.rst \
    		doc/libpkgconf-fragment.rst \
    		doc/libpkgconf-path.rst \
    		doc/libpkgconf-pkg.rst \
    		doc/libpkgconf-queue.rst \
    		doc/libpkgconf-tuple.rst
    
    test_scripts=	\
    		tests/basic.sh \
    		tests/builtins.sh \
    		tests/conflicts.sh \
    		tests/framework.sh \
    		tests/parser.sh \
    		tests/provides.sh \
    		tests/regress.sh \
    		tests/requires.sh \
    		tests/sysroot.sh \
    		tests/version.sh
    
    check_SCRIPTS=	$(test_scripts:.sh=)
    
    SUFFIXES=	.sh
    
    nobase_pkginclude_HEADERS = libpkgconf/bsdstubs.h libpkgconf/iter.h libpkgconf/libpkgconf.h libpkgconf/stdinc.h
    libpkgconf_la_SOURCES  =	\
    		libpkgconf/audit.c		\
    		libpkgconf/cache.c		\
    		libpkgconf/client.c		\
    		libpkgconf/pkg.c		\
    		libpkgconf/bsdstubs.c		\
    		libpkgconf/fragment.c		\
    		libpkgconf/argvsplit.c		\
    		libpkgconf/fileio.c		\
    		libpkgconf/tuple.c		\
    		libpkgconf/dependency.c		\
    		libpkgconf/queue.c		\
    		libpkgconf/path.c
    libpkgconf_la_LDFLAGS = -no-undefined -version-info 2:0:0 -export-symbols-regex '^pkgconf_'
    
    dist_man_MANS    = pkgconf.1
    pkgconf_LDADD    = libpkgconf.la
    pkgconf_SOURCES  = main.c getopt_long.c
    pkgconf_CPPFLAGS = -Ilibpkgconf
    noinst_HEADERS   = getopt_long.h
    
    dist_doc_DATA = README.md AUTHORS
    
    m4datadir              = $(datadir)/aclocal
    m4data_DATA            = pkg.m4
    
    CLEANFILES =	$(EXTRA_PROGRAMS) \
    		$(check_SCRIPTS)
    
    check: pkgconf $(check_SCRIPTS)
    	kyua --config=none test --kyuafile='$(top_builddir)/Kyuafile' \
    		--build-root='$(top_builddir)'
    
    .sh:
    	install -m 755 $< $@