diff options
author | Rob Austein <sra@hactrn.net> | 2011-02-24 20:57:56 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2011-02-24 20:57:56 +0000 |
commit | b3fd882ac163aa69604f2524dfe30b8f713ca031 (patch) | |
tree | 0a977f7b19c26d3e8c66bc8bd6524ea519bb3ab1 /utils | |
parent | 2ba8732465640300ed05885a63b9dfcb69031194 (diff) |
Installation targets
svn path=/utils/find_roa/Makefile.in; revision=3692
Diffstat (limited to 'utils')
-rw-r--r-- | utils/find_roa/Makefile.in | 21 | ||||
-rw-r--r-- | utils/hashdir/Makefile.in | 21 | ||||
-rw-r--r-- | utils/print_roa/Makefile.in | 21 | ||||
-rw-r--r-- | utils/print_rpki_manifest/Makefile.in | 21 |
4 files changed, 76 insertions, 8 deletions
diff --git a/utils/find_roa/Makefile.in b/utils/find_roa/Makefile.in index a326b290..3c133f97 100644 --- a/utils/find_roa/Makefile.in +++ b/utils/find_roa/Makefile.in @@ -10,6 +10,20 @@ CFLAGS = @CFLAGS@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ +INSTALL = @INSTALL@ -m 555 + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +datarootdir = @datarootdir@ +datadir = @datadir@ +localstatedir = @localstatedir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +bindir = @bindir@ +sbindir = @sbindir@ +libexecdir = @libexecdir@ +libdir = @libdir@ + abs_top_srcdir = @abs_top_srcdir@ abs_top_builddir = @abs_top_builddir@ @@ -28,8 +42,11 @@ test: ${BIN} # ./${BIN} ${TEST_ARGS} sh ./test_roa.sh ${TEST_ARGS} -install deinstall uninstall: - @true +install: all + ${INSTALL} ${BIN} ${bindir} + +deinstall uninstall: + rm -f ${bindir}/${BIN} distclean: clean rm -f Makefile diff --git a/utils/hashdir/Makefile.in b/utils/hashdir/Makefile.in index 69268d1e..cd564a33 100644 --- a/utils/hashdir/Makefile.in +++ b/utils/hashdir/Makefile.in @@ -10,6 +10,20 @@ CFLAGS = @CFLAGS@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ +INSTALL = @INSTALL@ -m 555 + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +datarootdir = @datarootdir@ +datadir = @datadir@ +localstatedir = @localstatedir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +bindir = @bindir@ +sbindir = @sbindir@ +libexecdir = @libexecdir@ +libdir = @libdir@ + abs_top_srcdir = @abs_top_srcdir@ abs_top_builddir = @abs_top_builddir@ @@ -30,8 +44,11 @@ test: ${BIN} clean:: rm -rf ${OUTPUT} -install deinstall uninstall: - @true +install: all + ${INSTALL} ${BIN} ${bindir} + +deinstall uninstall: + rm -f ${bindir}/${BIN} distclean: clean rm -f Makefile diff --git a/utils/print_roa/Makefile.in b/utils/print_roa/Makefile.in index 9a29f2ff..d3d70d7e 100644 --- a/utils/print_roa/Makefile.in +++ b/utils/print_roa/Makefile.in @@ -10,6 +10,20 @@ CFLAGS = @CFLAGS@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ +INSTALL = @INSTALL@ -m 555 + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +datarootdir = @datarootdir@ +datadir = @datadir@ +localstatedir = @localstatedir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +bindir = @bindir@ +sbindir = @sbindir@ +libexecdir = @libexecdir@ +libdir = @libdir@ + abs_top_srcdir = @abs_top_srcdir@ abs_top_builddir = @abs_top_builddir@ @@ -27,8 +41,11 @@ test: all -date -u +'now: %Y%m%d%H%M%SZ' if test -d ${ROA_DIR}; then find ${ROA_DIR} -type f -name '*.roa' -print -exec ./${BIN} {} \; ; else :; fi -install deinstall uninstall: - @true +install: all + ${INSTALL} ${BIN} ${bindir} + +deinstall uninstall: + rm -f ${bindir}/${BIN} distclean: clean rm -f Makefile diff --git a/utils/print_rpki_manifest/Makefile.in b/utils/print_rpki_manifest/Makefile.in index 04b42187..843c9db9 100644 --- a/utils/print_rpki_manifest/Makefile.in +++ b/utils/print_rpki_manifest/Makefile.in @@ -10,6 +10,20 @@ CFLAGS = @CFLAGS@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ +INSTALL = @INSTALL@ -m 555 + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +datarootdir = @datarootdir@ +datadir = @datadir@ +localstatedir = @localstatedir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +bindir = @bindir@ +sbindir = @sbindir@ +libexecdir = @libexecdir@ +libdir = @libdir@ + abs_top_srcdir = @abs_top_srcdir@ abs_top_builddir = @abs_top_builddir@ @@ -27,8 +41,11 @@ test: all -date -u +'now: %Y%m%d%H%M%SZ' if test -d ${MANIFEST_DIR}; then find ${MANIFEST_DIR} -type f -name '*.mnf' -print -exec ./${BIN} {} \; ; else :; fi -install deinstall uninstall: - @true +install: all + ${INSTALL} ${BIN} ${bindir} + +deinstall uninstall: + rm -f ${bindir}/${BIN} distclean: clean rm -f Makefile |