Changeset 5eb5dcf in mainline for uspace/Makefile


Ignore:
Timestamp:
2010-01-06T20:56:04Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fccc236
Parents:
002252a (diff), eca2435 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    r002252a r5eb5dcf  
    3333
    3434DIRS = \
     35        app/bdsh \
     36        app/edit \
     37        app/getterm \
     38        app/init \
     39        app/klog \
     40        app/redir \
     41        app/tester \
     42        app/tetris \
     43        app/trace \
     44        srv/clip \
     45        srv/devmap \
     46        srv/loader \
     47        srv/ns \
     48        srv/vfs \
    3549        srv/bd/ata_bd \
    3650        srv/bd/file_bd \
    3751        srv/bd/gxe_bd \
    3852        srv/bd/rd \
    39         srv/ns \
    40         srv/loader \
    41         srv/fb \
    42         srv/kbd \
    43         srv/console \
     53        srv/bd/part/mbr_part \
    4454        srv/fs/fat \
    4555        srv/fs/tmpfs \
    4656        srv/fs/devfs \
    47         srv/vfs \
    48         srv/devmap \
    49         srv/part/mbr_part \
    50         app/edit \
    51         app/tetris \
    52         app/tester \
    53         app/trace \
    54         app/klog \
    55         app/init \
    56         app/getvc \
    57         app/redir \
    58         app/bdsh
     57        srv/hid/console \
     58        srv/hid/c_mouse \
     59        srv/hid/fb \
     60        srv/hid/kbd \
     61        srv/hw/char/i8042
    5962
    6063ifeq ($(UARCH),amd64)
    61         DIRS += srv/pci
     64        DIRS += srv/hw/bus/pci
    6265endif
    6366
    6467ifeq ($(UARCH),ia32)
    65         DIRS += srv/pci
     68        DIRS += srv/hw/bus/pci
    6669endif
    6770
    6871ifeq ($(UARCH),sparc64)
    6972        DIRS += \
    70                 srv/cir/fhc \
    71                 srv/cir/obio
     73                srv/hw/cir/fhc \
     74                srv/hw/cir/obio
    7275endif
    7376
     
    9598
    9699$(BUILDS): $(LIBC_BUILD) $(LIBS_BUILD)
    97         $(MAKE) -C $(basename $@) all
     100        $(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK)
    98101
    99102$(LIBS_BUILD): $(LIBC_BUILD)
    100         $(MAKE) -C $(basename $@) all
     103        $(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK)
    101104
    102105$(LIBC_BUILD):
    103         $(MAKE) -C $(basename $@) all
     106        $(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK)
Note: See TracChangeset for help on using the changeset viewer.