blob: c49cf7082c9cb92326a9a89aa27e78e82c6f4b86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
## Process this file with automake to produce Makefile.in
AM_CPPFLAGS = -I $(top_srcdir)/lib
AM_CFLAGS =\
-Wall \
-Wextra \
-pedantic \
-Wno-format\
-O0\
-g
bin_PROGRAMS = mcastseed mcastleech random_speed_dd
mcastseed_SOURCES = mcastseed.c sockets.c
mcastleech_SOURCES = mcastleech.c sockets.c dgrambuf.c
mcastleech_LDADD = $(top_builddir)/lib/libgnu.a
random_speed_dd_SOURCES = random_speed_dd.c
|