blob: 55652948827fd49f22a1f4fd36bc23344423be37 [file] [log] [blame]
Samuel Tand7ed8512015-08-13 16:11:35 -07001# 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