######################################################################
#                
# Copyright (C) 1999, 2000, 2001,  Karlsruhe University
#                
# File path:     config/Makefile
# Description:   Makefile for pistachio configurator
#                
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
# 
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#                
# $Id: Makefile,v 1.5.4.7 2005/04/27 09:16:37 joshua Exp $
#                
######################################################################

CMLPATH=	$(SRCDIR)/../contrib/cml2
CMLCOMPILE=	$(CMLPATH)/cmlcompile.py
CMLCONFIG=	$(CMLPATH)/cmlconfigure.py
CMLCONFIGTRANS=	$(CMLPATH)/configtrans.py

CML_INPUT=	$(addprefix $(SRCDIR)/config/, rules.cml \
		  alpha.cml	\
		  amd64.cml	\
		  arm.cml	\
		  ia32.cml	\
		  ia64.cml	\
		  mips64.cml	\
		  powerpc.cml	\
		  powerpc64.cml	\
		 )

CMLBATCH_PARAMS ?=
CMLCONFIG_OPTIONS = -o config.out -i config.out \
  $(addprefix -D,$(CMLBATCH_PARAMS)) rules.out

.PHONY: batchconfig ttyconfig menuconfig xconfig

rules.out: $(CML_INPUT)
	@$(CMLCOMPILE) -o $@ $<

##  We not only need to force the configuration system to run every time,
##  but we must give parameters based on the build target even though the
##  same file is generated from every rule.  The trick is to use phony
##  targets, and to ensure that no rule mentions the output file, which
##  is config.out.
.PHONY: cml-menu-config cml-batch-config cml-tty-config cml-x-config
cml-menu-config: rules.out
	@$(CMLCONFIG) -c $(CMLCONFIG_OPTIONS)
cml-batch-config: rules.out
	@$(CMLCONFIG) -b $(CMLCONFIG_OPTIONS)
cml-tty-config: rules.out
	@$(CMLCONFIG) -t $(CMLCONFIG_OPTIONS)
cml-x-config: rules.out
	@$(CMLCONFIG) -x $(CMLCONFIG_OPTIONS)

config.h .config: config.out
	@$(CMLCONFIGTRANS) -h $(@D)/config.h -s $(@D)/.config $<

$(BUILDDIR)/Makeconf.local: .config
	@echo "Rewriting $(@F) ..."
	@awk -F'[_=]' '/^CONFIG_ARCH_[^_]*=y/ { ARCH=$$3 } /^CONFIG_CPU_[^_]*_[^_]*=y/ { CPU=$$4 } /^CONFIG_PLAT_[^_]*=y/ { PLATFORM=$$3 } END{ { printf(",s/^ARCH *=.*/ARCH=%s/\n,s/^CPU *=.*/CPU=%s/\n,s/^PLATFORM *=.*/PLATFORM=%s/\nwq\n", tolower(ARCH), tolower(CPU), tolower(PLATFORM)) }}' $< | ed -s $@

##  The ordering of the prerequisites matters!
menuconfig: cml-menu-config config.h $(BUILDDIR)/Makeconf.local
batchconfig: cml-batch-config config.h $(BUILDDIR)/Makeconf.local
ttyconfig: cml-tty-config config.h $(BUILDDIR)/Makeconf.local
xconfig: cml-x-config config.h $(BUILDDIR)/Makeconf.local

