diff options
author | linus <linus@nordu.net> | 2011-01-19 16:47:37 +0100 |
---|---|---|
committer | linus <linus@nordu.net> | 2011-01-19 16:47:37 +0100 |
commit | 75732c2f1247725bf512b152450306157b56d78f (patch) | |
tree | 065948ef3a95b016d0921ba0e06ce5631484fa99 /lib/tests/Makefile.am | |
parent | 54eeaa8284b754879f02ee1b76094e377c00ab7b (diff) |
Add basic testing code.
Diffstat (limited to 'lib/tests/Makefile.am')
-rw-r--r-- | lib/tests/Makefile.am | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/tests/Makefile.am b/lib/tests/Makefile.am new file mode 100644 index 0000000..243719f --- /dev/null +++ b/lib/tests/Makefile.am @@ -0,0 +1,10 @@ +AUTOMAKE_OPTIONS = foreign +INCLUDES = -I$(top_srcdir)/include +AM_CFLAGS = -Wall -g + +bin_PROGRAMS = test-udp udp-server + +test_udp_SOURCES = test-udp.c +test_udp_LDADD = ../libradsec.la -lcgreen -lm + +udp_server_SOURCES = udp-server.c udp.c |