mirror of
https://github.com/rsmarples/dhcpcd.git
synced 2024-11-23 10:06:42 +08:00
9 lines
313 B
Makefile
9 lines
313 B
Makefile
# Nasty hack so that make clean works without configure being run
|
|
TOP?= .
|
|
_CONFIG_MK!= test -e ${TOP}/config.mk && \
|
|
echo config.mk || echo config-null.mk
|
|
_CONFIG_MK?= $(shell test -e ${TOP}/config.mk && \
|
|
echo config.mk || echo config-null.mk)
|
|
CONFIG_MK?= ${_CONFIG_MK}
|
|
include ${TOP}/${CONFIG_MK}
|