# # 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/edit \ app/ext2info \ app/getterm \ app/init \ app/kill \ app/killall \ app/klog \ app/lsusb \ app/mkfat \ app/redir \ app/sbi \ 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/ping \ app/websrv \ app/sysinfo \ app/mkbd \ srv/clip \ srv/devmap \ srv/devman \ srv/loader \ srv/ns \ srv/taskmon \ 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/fat \ srv/fs/tmpfs \ srv/fs/devfs \ srv/fs/ext2fs \ srv/hid/s3c24xx_ts \ srv/hid/fb \ srv/hid/input \ srv/hw/char/i8042 \ srv/hw/char/s3c24xx_uart \ srv/hw/netif/ne2000 \ srv/net/netif/lo \ srv/net/il/arp \ srv/net/il/ip \ srv/net/tl/icmp \ srv/net/tl/udp \ srv/net/tl/tcp \ srv/net/net \ drv/infrastructure/root \ drv/infrastructure/rootvirt \ 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/usbmouse \ drv/bus/usb/vhc ## Networking # DIRS += \ srv/net/nil/eth \ srv/net/nil/nildummy ## Platform-specific hardware support # ifneq ($(UARCH),abs32le) DIRS += srv/hid/console endif 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/scsi \ lib/softint \ lib/softfloat \ lib/drv \ lib/packet \ lib/imgmap \ lib/net \ lib/ext2 \ lib/usb \ lib/usbhost \ lib/usbdev \ lib/usbhid \ lib/usbvirt 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)