topdir*.mk: autoconf stuff topdir.mk -> topdir-autoconf.mk

Source out autoconf conditionals from topdir.mk into
topdir-autoconf.mk.
This commit is contained in:
Jan Lindemann 2009-05-27 11:26:17 +00:00 committed by Jan Lindemann
commit bd079bf1d3
3 changed files with 12 additions and 19 deletions

9
make/topdir-autoconf.mk Normal file
View file

@ -0,0 +1,9 @@
ifeq ($(wildcard $(TOPDIR)/make/defs.mk),)
ifneq ($(wildcard $(TOPDIR)/make/defs.mk.in),)
include $(MODDIR)/make/autoconf.mk
else
include $(MODDIR)/make/topdir.mk
endif
else
include $(MODDIR)/make/topdir.mk
endif