summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-05-08 15:54:59 +0200
committerMartin Mares <mj@ucw.cz>2000-05-08 15:54:59 +0200
commitd8508f70b0325cd283bc1551c455cdc3aab011fe (patch)
treef3c4d499ce5a6b05720c4165556f125449a09d9a /tools
parent93d6bf38a6c07b8281e11280d5cdbb721d19f7c8 (diff)
downloadbird-d8508f70b0325cd283bc1551c455cdc3aab011fe.tar
bird-d8508f70b0325cd283bc1551c455cdc3aab011fe.zip
`make install' now works.
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile-top.in2
-rw-r--r--tools/Makefile.in12
-rw-r--r--tools/Rules.in9
3 files changed, 22 insertions, 1 deletions
diff --git a/tools/Makefile-top.in b/tools/Makefile-top.in
index 415bc87..9e5049e 100644
--- a/tools/Makefile-top.in
+++ b/tools/Makefile-top.in
@@ -3,7 +3,7 @@
objdir=@objdir@
-all depend tags docs userdocs progdocs:
+all depend tags docs userdocs progdocs install:
$(MAKE) -C $(objdir) $@
clean:
diff --git a/tools/Makefile.in b/tools/Makefile.in
index 5eb7183..a740b9b 100644
--- a/tools/Makefile.in
+++ b/tools/Makefile.in
@@ -37,6 +37,18 @@ userdocs progdocs: .dir-stamp
tags:
cd $(srcdir) ; etags -lc `find $(static-dirs) $(addprefix $(objdir)/,$(dynamic-dirs)) $(client-dirs) -name *.[chY]`
+install: all
+ $(INSTALL) -d $(sbindir) $(sysconfdir)
+ $(INSTALL_PROGRAM) -s $(exedir)/bird $(sbindir)/
+ if test -n "@CLIENT@" ; then \
+ $(INSTALL_PROGRAM) -s $(exedir)/birdc $(sbindir)/ ; \
+ fi
+ if ! test -f $(sysconfdir)/bird.conf ; then \
+ $(INSTALL_DATA) $(srcdir)/doc/bird.conf.example $(sysconfdir)/bird.conf ; \
+ else \
+ echo "Not overwriting old bird.conf" ; \
+ fi
+
clean:
find . -name "*.[oa]" -o -name core -o -name depend -o -name "*.html" | xargs rm -f
rm -f $(exedir)/bird $(exedir)/birdc $(exedir)/bird.ctl .dep-stamp
diff --git a/tools/Rules.in b/tools/Rules.in
index 6e78626..92dadcf 100644
--- a/tools/Rules.in
+++ b/tools/Rules.in
@@ -29,6 +29,15 @@ M4=@M4@
BISON=@BISON@
FLEX=@FLEX@
RANLIB=@RANLIB@
+INSTALL=@INSTALL@
+INSTALL_PROGRAM=@INSTALL_PROGRAM@
+INSTALL_DATA=@INSTALL_DATA@
+
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+bindir=@bindir@
+sbindir=@sbindir@
+sysconfdir=@sysconfdir@
ifdef source