You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
299 B
Makefile
17 lines
299 B
Makefile
prog =
|
|
|
|
if IPV4
|
|
prog += fping
|
|
endif
|
|
if IPV6
|
|
prog += fping6
|
|
endif
|
|
|
|
sbin_PROGRAMS = ${prog}
|
|
|
|
fping_SOURCES = fping.c options.h seqmap.h seqmap.c
|
|
fping_DEPENDENCIES = ../config.h
|
|
fping6_SOURCES = fping.c options.h seqmap.h seqmap.c
|
|
fping6_DEPENDENCIES = ../config.h
|
|
fping6_CFLAGS = $(AM_CFLAGS) -DIPV6
|