blob: 243719f9ab794a702f5117e7d8c27ee2b09d5f26 (
plain)
1
2
3
4
5
6
7
8
9
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
|