X-Git-Url: http://git.draconx.ca/gitweb/upkg.git/blobdiff_plain/382855dd3f69cdce3e3b4eb6da392f881e7825da..645d6fedac86aace7704d54340ad442fc54991dd:/Makefile.am diff --git a/Makefile.am b/Makefile.am index 4f0f2a8..8f5aac9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,10 +1,38 @@ +# Copyright © 2009 Nick Bowler +# +# License WTFPL2: Do What The Fuck You Want To Public License, version 2. +# This is free software: you are free to do what the fuck you want to. +# There is NO WARRANTY, to the extent permitted by law. + +AUTOMAKE_OPTIONS = parallel-tests color-tests ACLOCAL_AMFLAGS = -I m4 +MOSTLYCLEANFILES = +noinst_LTLIBRARIES = + +AM_CPPFLAGS = -I$(top_srcdir)/src + +EXTRA_DIST = m4/gnulib-cache.m4 + +dist_man_MANS = doc/man/upkg.1 + DIST_SUBDIRS = libltdl src -SUBDIRS = +SUBDIRS = . if BUNDLED_LIBLTDL SUBDIRS += libltdl endif SUBDIRS += src + +check_PROGRAMS = test/decodeindex +test_decodeindex_LDADD = src/libupkg.la libgnu.la + +TESTS_ENVIRONMENT = SHELL='$(SHELL)' EXEEXT='$(EXEEXT)' +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) + +TESTS = tests/libupkg-index-decode.sh +EXTRA_DIST += $(TESTS) + +include $(top_srcdir)/lib/gnulib.mk