f9254d2349
C includes as they contain substitutions specific to make. Worked around by creating sysconf/paths.h which is created from the Makefile instead of by the configure script.
15 lines
444 B
Text
15 lines
444 B
Text
# Makefile for in place build of BIRD
|
|
# (c) 1999--2000 Martin Mares <mj@ucw.cz>
|
|
|
|
objdir=@objdir@
|
|
|
|
all depend tags docs userdocs progdocs install:
|
|
$(MAKE) -C $(objdir) $@
|
|
|
|
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
|
|
rm -rf $(objdir)
|
|
rm -f config.* configure sysdep/autoconf.h sysdep/paths.h Makefile
|