File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / bird / tools / Makefile-top.in
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Mar 17 19:50:23 2021 UTC (3 years, 3 months ago) by misho
Branches: bird, MAIN
CVS tags: v1_6_8p3, HEAD
bird 1.6.8

    1: # Makefile for in place build of BIRD
    2: # (c) 1999--2000 Martin Mares <mj@ucw.cz>
    3: 
    4: objdir=@objdir@
    5: 
    6: all depend tags install install-docs:
    7: 	$(MAKE) -C $(objdir) $@
    8: 
    9: docs userdocs progdocs:
   10: 	$(MAKE) -C doc $@
   11: 
   12: clean:
   13: 	$(MAKE) -C $(objdir) clean
   14: 	find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core -or -name depend -or -name ".#*" | xargs rm -f
   15: 
   16: distclean: clean
   17: 	$(MAKE) -C doc distclean
   18: 	rm -rf $(objdir) autom4te.cache
   19: 	rm -f config.* configure sysdep/autoconf.h.in sysdep/paths.h Makefile
   20: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>