#
# Copyright (c) 2005 Martin Decky
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# - Redistributions of source code must retain the above copyright
#   notice, this list of conditions and the following disclaimer.
# - 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.
# - The name of the author may not be used to endorse or promote products
#   derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 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.
#

-include ../Makefile.common
-include ../Makefile.config

## Common binaries
#

DIRS = \
	app/bdsh \
	app/blkdump \
	app/bnchmark \
	app/devctl \
	app/edit \
	app/ext2info \
	app/getterm \
	app/init \
	app/inetcfg \
	app/kill \
	app/killall \
	app/klog \
	app/locinfo \
	app/lsusb \
	app/mkfat \
	app/mkmfs \
	app/redir \
	app/sbi \
	app/sportdmp \
	app/stats \
	app/taskdump \
	app/tester \
	app/testread \
	app/tetris \
	app/trace \
	app/top \
	app/usbinfo \
	app/vuhid \
	app/netecho \
	app/nettest1 \
	app/nettest2 \
	app/nettest3 \
	app/websrv \
	app/sysinfo \
	app/mkbd \
	srv/clip \
	srv/loc \
	srv/devman \
	srv/ethip \
	srv/inet \
	srv/loader \
	srv/ns \
	srv/taskmon \
	srv/tcp \
	srv/vfs \
	srv/bd/ata_bd \
	srv/bd/file_bd \
	srv/bd/gxe_bd \
	srv/bd/rd \
	srv/bd/part/guid_part \
	srv/bd/part/mbr_part \
	srv/fs/exfat \
	srv/fs/fat \
	srv/fs/cdfs \
	srv/fs/tmpfs \
	srv/fs/mfs \
	srv/fs/locfs \
	srv/fs/ext2fs \
	srv/hid/console \
	srv/hid/s3c24xx_ts \
	srv/hid/fb \
	srv/hid/input \
	srv/hid/remcons \
	srv/hw/char/s3c24xx_uart \
	drv/infrastructure/root \
	drv/infrastructure/rootvirt \
	drv/char/i8042 \
	drv/char/ps2mouse \
	drv/char/xtkbd \
	drv/test/test1 \
	drv/test/test2 \
	drv/test/test3 \
	drv/bus/usb/ehci \
	drv/bus/usb/ohci \
	drv/bus/usb/uhci \
	drv/bus/usb/uhcirh \
	drv/bus/usb/usbflbk \
	drv/bus/usb/usbhid \
	drv/bus/usb/usbhub \
	drv/bus/usb/usbmast \
	drv/bus/usb/usbmid \
	drv/bus/usb/vhc \
	drv/nic/lo \
	drv/nic/ne2k \
	drv/nic/e1k \
	drv/nic/rtl8139

ifeq ($(CONFIG_PCC),y)
DIRS += \
	app/cc \
	app/ccom \
	app/ccom/mkext \
	app/cpp
endif

ifeq ($(CONFIG_BINUTILS),y)
DIRS += \
	app/binutils
endif

## Platform-specific hardware support
#

ifeq ($(UARCH),amd64)
	DIRS += \
		drv/infrastructure/rootpc \
		drv/bus/pci/pciintel \
		drv/bus/isa \
		drv/char/ns8250 \
		srv/hw/irc/apic \
		srv/hw/irc/i8259
endif

ifeq ($(UARCH),ia32)
	DIRS += \
		drv/infrastructure/rootpc \
		drv/bus/pci/pciintel \
		drv/bus/isa \
		drv/char/ns8250 \
		srv/hw/irc/apic \
		srv/hw/irc/i8259
endif

ifeq ($(UARCH),ppc32)
	DIRS += \
		drv/infrastructure/rootmac \
		srv/hw/bus/cuda_adb
endif

ifeq ($(UARCH),sparc64)
	DIRS += \
		srv/hw/irc/obio
endif

## System libraries
#

LIBC = lib/c
LIBS = \
	lib/fs \
	lib/block \
	lib/clui \
	lib/fmtutil \
	lib/scsi \
	lib/softint \
	lib/softfloat \
	lib/drv \
	lib/fb \
	lib/net \
	lib/nic \
	lib/ext2 \
	lib/usb \
	lib/usbhost \
	lib/usbdev \
	lib/usbhid \
	lib/usbvirt \
	lib/posix

LIBC_BUILD = $(addsuffix .build,$(LIBC))
LIBS_BUILD = $(addsuffix .build,$(LIBS))
LIBN_BUILD = $(addsuffix .build,$(LIBN))
BUILDS := $(addsuffix .build,$(DIRS))

CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBN)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC))

.PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(LIBN_BUILD) $(BUILDS) $(CLEANS) clean

all: $(BUILDS)

clean: $(CLEANS)

$(CLEANS):
	-$(MAKE) -C $(basename $@) clean

$(BUILDS): $(LIBC_BUILD) $(LIBS_BUILD) $(LIBN_BUILD)
	$(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK)

$(LIBN_BUILD): $(LIBC_BUILD) $(LIBS_BUILD)
	$(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK)

$(LIBS_BUILD): $(LIBC_BUILD)
	$(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK)

$(LIBC_BUILD):
	$(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK)
