]> andersk Git - libyaml.git/blame - Makefile.am
Update .gitignore with latest generated files
[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
IN
15distclean-local:
16 -rm -fr libyaml-test
17
721c1923
KS
18.PHONY: bootstrap
19bootstrap: maintainer-clean
20 ./bootstrap
21
9db82160
IN
22test: all
23 make -C tests check-TESTS
26b098f2
IN
24
25test-suite: libyaml-test
26 (export LIBYAML_DIR=$$PWD; make -C $< test)
27
28libyaml-test:
29 git clone https://github.com/yaml/$@
30
31test-all: test test-suite
This page took 0.046523 seconds and 5 git commands to generate.