mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-23 02:01:55 +00:00
b4c639d9ae
Using `make sockettest` generetes `snd` and `rcv` binaries. It can be used for testing BIRD's sockets. Based on code by Ondrej Zajicek
27 lines
719 B
Plaintext
27 lines
719 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 tests sockettest:
|
|
$(MAKE) -C $(objdir) $@
|
|
|
|
docs userdocs progdocs:
|
|
$(MAKE) -C doc $@
|
|
|
|
check: tests
|
|
tools/run_tests.sh "@objdir@" "@srcdir@"
|
|
|
|
clean: clean-tests
|
|
$(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 sysdep/paths.h Makefile
|
|
|
|
clean-tests:
|
|
find . -name '*_test' | xargs rm -f
|
|
find . -name '*_test.o' | xargs rm -f
|
|
rm -f $(objdir)/test/*.o |