]> andersk Git - libyaml.git/blame - Makefile.am
Add fedora dockerfile from PR #43
[libyaml.git] / Makefile.am
CommitLineData
cec6fc98 1## Run `./bootstrap` to generate the "Makefile.in" files in this directory and
dded84b1 2## the "$SUBDIRS" subdirectories.
cec6fc98 3
dded84b1 4SUBDIRS = include src . tests win32
721c1923 5
01e8dadf 6EXTRA_DIST = README LICENSE CMakeLists.txt doc/doxygen.cfg
721c1923 7
242a44b6
KS
8pkgconfigdir = $(libdir)/pkgconfig
9pkgconfig_DATA = yaml-0.1.pc
10
721c1923
KS
11maintainer-clean-local:
12 -rm -f aclocal.m4 config.h.in configure config/*
13 -find ${builddir} -name Makefile.in -exec rm -f '{}' ';'
14
26b098f2 15distclean-local:
a672b071 16 -make -C tests/run-test-suite clean
26b098f2 17
721c1923
KS
18.PHONY: bootstrap
19bootstrap: maintainer-clean
20 ./bootstrap
a672b071
IN
21 ./configure
22 make
721c1923 23
9db82160
IN
24test: all
25 make -C tests check-TESTS
26b098f2 26
a672b071
IN
27test-suite:
28 (export LIBYAML_DIR=$$PWD; make -C tests/run-test-suite test)
26b098f2
IN
29
30test-all: test test-suite
This page took 0.063307 seconds and 5 git commands to generate.