diff options
author | markm <markm@FreeBSD.org> | 1996-03-04 16:06:03 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1996-03-04 16:06:03 +0000 |
commit | 7bdc66338dcff450d6bc1a1dd096901ecb9b7288 (patch) | |
tree | d0325650d8233888e073be9bd9cfa79b402e2b4d /gnu | |
parent | 8383c5910ea9725e1af95c6a43e2c9b9a00b0fb1 (diff) | |
download | FreeBSD-src-7bdc66338dcff450d6bc1a1dd096901ecb9b7288.zip FreeBSD-src-7bdc66338dcff450d6bc1a1dd096901ecb9b7288.tar.gz |
Make "make tests" actually work. This is an extremely crude hack, but
I figure that as this is not part of any automated processes, WTH.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libgmp/tests/Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/lib/libgmp/tests/Makefile b/gnu/lib/libgmp/tests/Makefile index 3d74668..9d62bf6 100644 --- a/gnu/lib/libgmp/tests/Makefile +++ b/gnu/lib/libgmp/tests/Makefile @@ -24,7 +24,7 @@ CC = gcc TEST_LIBS = -lgmp OPT = -O -g -CFLAGS = -I${.CURDIR} -I${.CURDIR}/.. -I${.CURDIR}/../obj -I${.CURDIR}/../libgmp/obj $(OPT) +CFLAGS = -I${.CURDIR} -I${.CURDIR}/.. -I${.CURDIR}/../obj -I${.CURDIR}/../libgmp -I${.CURDIR}/../libgmp/obj $(OPT) TEST_SRCS = tst-mul.c tst-dm.c tst-dm_ui.c tst-mdm.c tst-mdm_ui.c tst-gcd.c \ tst-sqrtrem.c tst-convert.c @@ -56,11 +56,11 @@ tst-convert: tst-convert.o $(TEST_LIBS) $(TEST_PREFIX)clean: rm -f $(TESTS) $(TEST_OBJS) core -tst-convert.o : tst-convert.c ../gmp.h urandom.h -tst-dm.o : tst-dm.c ../gmp.h urandom.h -tst-dm_ui.o : tst-dm_ui.c ../gmp.h urandom.h -tst-gcd.o : tst-gcd.c ../gmp.h urandom.h -tst-mdm.o : tst-mdm.c ../gmp.h urandom.h -tst-mdm_ui.o : tst-mdm_ui.c ../gmp.h urandom.h -tst-mul.o : tst-mul.c ../gmp.h ../gmp-impl.h ../gmp-mparam.h ../longlong.h urandom.h -tst-sqrtrem.o : tst-sqrtrem.c ../gmp.h urandom.h +tst-convert.o : tst-convert.c gmp.h urandom.h +tst-dm.o : tst-dm.c gmp.h urandom.h +tst-dm_ui.o : tst-dm_ui.c gmp.h urandom.h +tst-gcd.o : tst-gcd.c gmp.h urandom.h +tst-mdm.o : tst-mdm.c gmp.h urandom.h +tst-mdm_ui.o : tst-mdm_ui.c gmp.h urandom.h +tst-mul.o : tst-mul.c gmp.h gmp-impl.h gmp-mparam.h longlong.h urandom.h +tst-sqrtrem.o : tst-sqrtrem.c gmp.h urandom.h |