aboutsummaryrefslogtreecommitdiff
path: root/utils/find_roa/Makefile.in
blob: a326b290e4654f3ca320fc7e1ea2b2b579569a71 (plain) (blame)
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
30
31
32
33
34
35
# $Id$

NAME = find_roa

BIN = ${NAME}
SRC = ${NAME}.c
OBJ = ${NAME}.o

CFLAGS = @CFLAGS@
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@

abs_top_srcdir	 = @abs_top_srcdir@
abs_top_builddir = @abs_top_builddir@

all: ${BIN}

clean:
	rm -f ${BIN} ${OBJ}

${BIN}: ${SRC}
	${CC} ${CFLAGS} -o $@ ${SRC} ${LDFLAGS} ${LIBS}


TEST_ARGS = ${abs_top_builddir}/rcynic/rcynic-data/authenticated 10.3.0.44 10.2.0.6 10.0.0.0/24

test: ${BIN}
#	./${BIN} ${TEST_ARGS}
	sh ./test_roa.sh ${TEST_ARGS}

install deinstall uninstall:
	@true

distclean: clean
	rm -f Makefile