mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 20:28:43 +00:00
7a855725f2
The patch allows to use autoreconf, replaces some long obsolete constructs and does some other minor cleanups. Also, the file configure.in is renamed to configure.ac, as the old name has been deprecated for a long time. Thanks to Ruben Kerkhof for the patchset.
21 lines
523 B
Plaintext
21 lines
523 B
Plaintext
# Makefile for in place build of BIRD
|
|
# (c) 1999--2000 Martin Mares <mj@ucw.cz>
|
|
|
|
objdir=@objdir@
|
|
|
|
all depend tags install install-docs:
|
|
$(MAKE) -C $(objdir) $@
|
|
|
|
docs userdocs progdocs:
|
|
$(MAKE) -C doc $@
|
|
|
|
clean:
|
|
$(MAKE) -C $(objdir) clean
|
|
find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core -or -name depend -or -name ".#*" | xargs rm -f
|
|
|
|
distclean: clean
|
|
$(MAKE) -C doc distclean
|
|
rm -rf $(objdir) autom4te.cache
|
|
rm -f config.* configure sysdep/autoconf.h.in sysdep/paths.h Makefile
|
|
|