1 # Nasty hack so that make clean works without configure being run 2 TOP?= . 3 _CONFIG_MK!= test -e ${TOP}/config.mk && \ 4 echo config.mk || echo config-null.mk 5 _CONFIG_MK?= $(shell test -e ${TOP}/config.mk && \ 6 echo config.mk || echo config-null.mk) 7 CONFIG_MK?= ${_CONFIG_MK} 8 include ${TOP}/${CONFIG_MK}