]> andersk Git - libyaml.git/blame - Makefile.am
debian: Release libyaml 0.2.2-1
[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
fe3d086f 4SUBDIRS = include src . tests
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 11maintainer-clean-local:
aa10f657 12 rm -f aclocal.m4 config.h.in configure config/*
721c1923
KS
13 -find ${builddir} -name Makefile.in -exec rm -f '{}' ';'
14
26b098f2 15distclean-local:
aa10f657 16 rm -fr tests/run-test-suite
e4aee06f 17 -git worktree prune
26b098f2 18
721c1923
KS
19.PHONY: bootstrap
20bootstrap: maintainer-clean
21 ./bootstrap
a672b071
IN
22 ./configure
23 make
721c1923 24
9db82160
IN
25test: all
26 make -C tests check-TESTS
26b098f2 27
e4aee06f
IN
28test-suite: tests/run-test-suite
29 make -C $< test
26b098f2
IN
30
31test-all: test test-suite
e4aee06f
IN
32
33tests/run-test-suite:
aa10f657
IN
34 -git branch --track run-test-suite origin/run-test-suite
35 -git worktree prune
e4aee06f 36 git worktree add $@ run-test-suite
This page took 0.156681 seconds and 5 git commands to generate.