]> andersk Git - libyaml.git/blame_incremental - Makefile.am
debian: Release libyaml 0.2.2-1
[libyaml.git] / Makefile.am
... / ...
CommitLineData
1## Run `./bootstrap` to generate the "Makefile.in" files in this directory and
2## the "$SUBDIRS" subdirectories.
3
4SUBDIRS = include src . tests
5
6EXTRA_DIST = README LICENSE CMakeLists.txt doc/doxygen.cfg
7
8pkgconfigdir = $(libdir)/pkgconfig
9pkgconfig_DATA = yaml-0.1.pc
10
11maintainer-clean-local:
12 rm -f aclocal.m4 config.h.in configure config/*
13 -find ${builddir} -name Makefile.in -exec rm -f '{}' ';'
14
15distclean-local:
16 rm -fr tests/run-test-suite
17 -git worktree prune
18
19.PHONY: bootstrap
20bootstrap: maintainer-clean
21 ./bootstrap
22 ./configure
23 make
24
25test: all
26 make -C tests check-TESTS
27
28test-suite: tests/run-test-suite
29 make -C $< test
30
31test-all: test test-suite
32
33tests/run-test-suite:
34 -git branch --track run-test-suite origin/run-test-suite
35 -git worktree prune
36 git worktree add $@ run-test-suite
This page took 0.026059 seconds and 5 git commands to generate.