diff options
Diffstat (limited to 'tools/Makefile.in')
-rw-r--r-- | tools/Makefile.in | 12 |
1 files changed, 12 insertions, 0 deletions
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 |