aboutsummaryrefslogtreecommitdiff
path: root/rtr-origin/Makefile.in
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2013-02-24 03:22:00 +0000
committerRob Austein <sra@hactrn.net>2013-02-24 03:22:00 +0000
commit7420e8df36b0156c73b19c45e2c25a389518fae1 (patch)
tree3d78451ed95b6ccb0354896453335dd2f53b7837 /rtr-origin/Makefile.in
parentf419595c47e338978c3263d22085e75d452f7283 (diff)
inetd/xinetd listener for rpki-rtr on source code installation, also needed for Ubuntu package.
svn path=/branches/tk377/; revision=5058
Diffstat (limited to 'rtr-origin/Makefile.in')
-rw-r--r--rtr-origin/Makefile.in23
1 files changed, 19 insertions, 4 deletions
diff --git a/rtr-origin/Makefile.in b/rtr-origin/Makefile.in
index 39bd1994..ef15ac4c 100644
--- a/rtr-origin/Makefile.in
+++ b/rtr-origin/Makefile.in
@@ -4,8 +4,9 @@ BASE = rtr-origin
SRC = ${BASE}.py
BIN = ${BASE}
-INSTALL = @INSTALL@ -m 555
+INSTALL = @INSTALL@
PYTHON = @PYTHON@
+AWK = @AWK@
prefix = @prefix@
exec_prefix = @exec_prefix@
@@ -22,14 +23,22 @@ libdir = @libdir@
abs_top_srcdir = @abs_top_srcdir@
abs_top_builddir = @abs_top_builddir@
+RTR_ORIGIN_INSTALL_TARGETS = @RCYNIC_INSTALL_TARGETS@
+
+RPKI_RTR_PORT = 43779
+
all: ${BIN}
clean:
rm -f ${BIN}
-install: all
- if test -d ${DESTDIR}${bindir} ; then :; else ${INSTALL} -d ${DESTDIR}${bindir}; fi
- ${INSTALL} ${BIN} ${DESTDIR}${bindir}/${BIN}
+install: all ${RTR_ORIGIN_INSTALL_TARGETS}
+
+install-always:
+ if test -d ${DESTDIR}${bindir} ; then :; else ${INSTALL} -m 555 -d ${DESTDIR}${bindir}; fi
+ ${INSTALL} -m 555 ${BIN} ${DESTDIR}${bindir}/${BIN}
+
+install-postconf: install-listener
deinstall uninstall:
rm -f ${DESTDIR}${bindir}/${BIN}
@@ -45,3 +54,9 @@ ${BIN} : ${SRC}
test:
@true
+
+.FORCE:
+
+# Platform-specific rules below here.
+
+@RTR_ORIGIN_MAKE_RULES@