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/find_roa | |
parent | 2ba8732465640300ed05885a63b9dfcb69031194 (diff) |
Installation targets
svn path=/utils/find_roa/Makefile.in; revision=3692
Diffstat (limited to 'utils/find_roa')
-rw-r--r-- | utils/find_roa/Makefile.in | 21 |
1 files changed, 19 insertions, 2 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 |