File: Makefile.am

package info (click to toggle)
libdumbnet 1.18.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,768 kB
  • sloc: ansic: 11,563; sh: 4,203; python: 261; makefile: 92
file content (26 lines) | stat: -rw-r--r-- 595 bytes parent folder | download | duplicates (2)
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
## $Id$

include $(top_srcdir)/Makefile.am.common

AM_CPPFLAGS += @CHECKINC@

if HAVE_CHECK
TESTS = check_addr check_arp check_blob check_eth check_fw check_ip \
	check_intf check_rand check_route
else
TESTS =
endif

noinst_PROGRAMS = $(TESTS)

check_addr_SOURCES = check_addr.c
check_arp_SOURCES = check_arp.c
check_blob_SOURCES = check_blob.c
check_eth_SOURCES = check_eth.c
check_fw_SOURCES = check_fw.c
check_intf_SOURCES = check_intf.c
check_ip_SOURCES = check_ip.c
check_rand_SOURCES = check_rand.c
check_route_SOURCES = check_route.c

LDADD = $(top_builddir)/src/libdumbnet.la @CHECKLIB@