Skip to content
Snippets Groups Projects
Makefile.am 802 B
Newer Older
  • Learn to ignore specific revisions
  • ## Run `./bootstrap` to generate the "Makefile.in" files in this directory and
    
    ## the "$SUBDIRS" subdirectories.
    
    SUBDIRS = include src . tests
    
    Kirill Simonov's avatar
    Kirill Simonov committed
    
    
    EXTRA_DIST = README LICENSE CMakeLists.txt doc/doxygen.cfg
    
    Kirill Simonov's avatar
    Kirill Simonov committed
    
    
    pkgconfigdir = $(libdir)/pkgconfig
    pkgconfig_DATA = yaml-0.1.pc
    
    
    Kirill Simonov's avatar
    Kirill Simonov committed
    maintainer-clean-local:
    
    	rm -f aclocal.m4 config.h.in configure config/*
    
    Kirill Simonov's avatar
    Kirill Simonov committed
    	-find ${builddir} -name Makefile.in -exec rm -f '{}' ';'
    
    
    distclean-local:
    
    	rm -fr tests/run-test-suite
    
    Kirill Simonov's avatar
    Kirill Simonov committed
    .PHONY: bootstrap
    bootstrap: maintainer-clean
    	./bootstrap
    
    test: all
    	make -C tests check-TESTS
    
    test-suite: tests/run-test-suite
    	make -C $< test
    
    
    test-all: test test-suite
    
    	-git branch --track run-test-suite origin/run-test-suite
    	-git worktree prune
    
    	git worktree add $@ run-test-suite