diff options
Diffstat (limited to 'util/Makefile.am')
-rw-r--r-- | util/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/util/Makefile.am b/util/Makefile.am index 3f2f9a3d0..5b0b99df2 100644 --- a/util/Makefile.am +++ b/util/Makefile.am @@ -7,8 +7,12 @@ noinst_LIBRARIES = libutil.a libutil_a_SOURCES = g10u.c logger.c fileutil.c miscutil.c strgutil.c \ ttyio.c argparse.c memory.c secmem.c errors.c iobuf.c \ - dotlock.c + dotlock.c http.c +http-test: http.c + gcc -DHAVE_CONFIG_H -I. -I. -I.. $(INCLUDES) -g -Wall -DTEST \ + -o http-test http.c libutil.a ../mpi/libmpi.a @INTLLIBS@ + |