mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-25 04:40:19 +02:00
Add make rule to build test case dependencies.
* .gitignore: Update pattern of ignored files. * check/Makefile.am: Add rule to build liblightning.la dependency in case of running "make check" before building the library.
This commit is contained in:
parent
cb6a2c51f0
commit
22cc2ad62c
3 changed files with 20 additions and 4 deletions
12
.gitignore
vendored
12
.gitignore
vendored
|
@ -3,14 +3,22 @@ autom4te.cache
|
||||||
aclocal.m4
|
aclocal.m4
|
||||||
depcomp
|
depcomp
|
||||||
INSTALL
|
INSTALL
|
||||||
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
config.h.in
|
|
||||||
config.guess
|
config.guess
|
||||||
|
config.h
|
||||||
|
config.h.in
|
||||||
|
config.log
|
||||||
|
config.status
|
||||||
config.sub
|
config.sub
|
||||||
configure
|
configure
|
||||||
install-sh
|
install-sh
|
||||||
|
libtool
|
||||||
ltmain.sh
|
ltmain.sh
|
||||||
missing
|
missing
|
||||||
|
stamp-h1
|
||||||
|
check/.deps
|
||||||
|
lib/.deps
|
||||||
m4/libtool.m4
|
m4/libtool.m4
|
||||||
m4/lt~obsolete.m4
|
m4/lt~obsolete.m4
|
||||||
m4/ltoptions.m4
|
m4/ltoptions.m4
|
||||||
|
@ -18,5 +26,3 @@ m4/ltsugar.m4
|
||||||
m4/ltversion.m4
|
m4/ltversion.m4
|
||||||
doc/mdate-sh
|
doc/mdate-sh
|
||||||
doc/texinfo.tex
|
doc/texinfo.tex
|
||||||
lightning/Makefile.in
|
|
||||||
tests/Makefile.in
|
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
2012-12-02 Paulo Andrade <pcpa@gnu.org>
|
||||||
|
|
||||||
|
* .gitignore: Update pattern of ignored files.
|
||||||
|
|
||||||
|
* check/Makefile.am: Add rule to build liblightning.la dependency
|
||||||
|
in case of running "make check" before building the library.
|
||||||
|
|
||||||
2012-12-02 Paulo Andrade <pcpa@gnu.org>
|
2012-12-02 Paulo Andrade <pcpa@gnu.org>
|
||||||
|
|
||||||
* lightning/Makefile.am, lightning/asm-common.h,
|
* lightning/Makefile.am, lightning/asm-common.h,
|
||||||
|
|
|
@ -16,7 +16,10 @@ AM_CFLAGS = -I$(top_srcdir)/include -D_GNU_SOURCE
|
||||||
|
|
||||||
check_PROGRAMS = lightning
|
check_PROGRAMS = lightning
|
||||||
|
|
||||||
lightning_LDADD = $(top_srcdir)/lib/liblightning.la -ldl
|
lightning_LDADD = $(top_builddir)/lib/liblightning.la -ldl
|
||||||
|
|
||||||
|
$(top_builddir)/lib/liblightning.la:
|
||||||
|
cd $(top_builddir)/lib; $(MAKE) $(AM_MAKEFLAGS) liblightning.la
|
||||||
|
|
||||||
lightning_SOURCES = \
|
lightning_SOURCES = \
|
||||||
lightning.c
|
lightning.c
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue