1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
AM_CPPFLAGS = -D_GNU_SOURCE -I$(top_srcdir)/lib/include -I$(top_builddir)/lib/include
AM_CFLAGS = -Wall
LDADD = $(top_builddir)/libivykis.la
noinst_PROGRAMS = avl \
client \
connectfail \
connectreset \
null \
server \
server_thread \
struct_sizes \
timer \
timer_rat
avl_SOURCES = avl.c
client_SOURCES = client.c
connectfail_SOURCES = connectfail.c
connectreset_SOURCES = connectreset.c
null_SOURCES = null.c
server_SOURCES = server.c
struct_sizes_SOURCES = struct_sizes.c
timer_SOURCES = timer.c
timer_rat_SOURCES = timer_rat.c
server_thread_CPPFLAGS = -D_GNU_SOURCE -I$(top_srcdir)/lib/include -I$(top_builddir)/lib/include -DTHREAD
server_thread_SOURCES = server.c
|