blob: 2f2a73527986eb7e14a821d1619676751df704cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
## Process this file with automake to produce Makefile.in
AM_CPPFLAGS = -I $(top_srcdir)/lib
AM_CFLAGS =\
-Wall \
-Wextra \
-pedantic \
-Wno-format
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
|