mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-17 10:35:41 +00:00
Build & run the test suite.
This commit is contained in:
parent
ed9b8e0d46
commit
cc89b6f763
1 changed files with 21 additions and 0 deletions
21
expat/tests/Makefile.in
Normal file
21
expat/tests/Makefile.in
Normal file
|
@ -0,0 +1,21 @@
|
|||
SHELL = @SHELL@
|
||||
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
CC=@CC@
|
||||
CPPFLAGS = @CPPFLAGS@ -I../lib
|
||||
LDFLAGS = @LDFLAGS@ -L../lib
|
||||
LIBS = @LIBS@ -lexpat -lcheck
|
||||
CFLAGS = @CFLAGS@
|
||||
|
||||
|
||||
check: runtests
|
||||
@./runtests
|
||||
|
||||
runtests.o: runtests.c
|
||||
$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
|
||||
|
||||
runtests: runtests.o
|
||||
$(CC) $(LDFLAGS) $< -o $@ $(LIBS)
|
Loading…
Add table
Reference in a new issue