diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-09-15 20:36:28 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-09-15 20:36:28 +0000 |
commit | 0de20d8ee61eca4b73be325bb1cf5c59ba4736f7 (patch) | |
tree | c6f87ecba85869377653e19828fc113af4ddbbd7 | |
parent | cd5de5c0e51cb473f06b9157a03b6a28529b25bf (diff) |
build tftpd too!
-rw-r--r-- | tests/server/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/server/Makefile.am b/tests/server/Makefile.am index 7d3a653bb..5bd1b50d8 100644 --- a/tests/server/Makefile.am +++ b/tests/server/Makefile.am @@ -25,7 +25,7 @@ AUTOMAKE_OPTIONS = foreign INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/include -noinst_PROGRAMS = sws getpart sockfilt resolve +noinst_PROGRAMS = sws getpart sockfilt resolve tftpd useful = getpart.c getpart.h $(top_srcdir)/lib/strequal.c \ $(top_srcdir)/lib/base64.c $(top_srcdir)/lib/mprintf.c \ @@ -36,5 +36,7 @@ sws_SOURCES= sws.c util.c util.h $(useful) sockfilt_SOURCES = sockfilt.c util.c util.h $(useful) \ $(top_srcdir)/lib/inet_pton.c getpart_SOURCES= testpart.c $(useful) +tftpd_SOURCES = tftpd.c util.c util.h $(useful) extra_DIST = base64.pl + |