1# GNU Make does not automagically include .depend
2# Luckily it does read GNUmakefile over Makefile so we can work around it
3
4# Nasty hack so that make clean works without configure being run
5TOP?=		..
6CONFIG_MK?=	$(shell test -e ${TOP}/config.mk && \
7		    echo config.mk || echo config-null.mk)
8
9include Makefile
10ifneq ($(wildcard .depend), )
11include .depend
12endif
13