Changeset 89c57b6 in mainline for uspace/Makefile


Ignore:
Timestamp:
2011-04-13T14:45:41Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
Children:
88634420
Parents:
cefb126 (diff), 17279ead (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

    rcefb126 r89c57b6  
    3838        app/getterm \
    3939        app/init \
     40        app/kill \
     41        app/killall \
    4042        app/klog \
    4143        app/mkfat \
     
    4446        app/stats \
    4547        app/taskdump \
    46         app/tasks \
    4748        app/tester \
    4849        app/tetris \
    4950        app/trace \
    5051        app/top \
     52        app/netecho \
     53        app/nettest1 \
     54        app/nettest2 \
     55        app/ping \
     56        app/websrv \
     57        app/sysinfo \
    5158        srv/clip \
    5259        srv/devmap \
     60        srv/devman \
    5361        srv/loader \
    5462        srv/ns \
     
    6674        srv/hid/adb_mouse \
    6775        srv/hid/char_mouse \
     76        srv/hid/s3c24xx_ts \
    6877        srv/hid/fb \
    6978        srv/hid/kbd \
    7079        srv/hw/char/i8042 \
    71         srv/hw/netif/dp8390 \
    72         srv/net/cfg \
     80        srv/hw/char/s3c24xx_uart \
     81        srv/hw/netif/ne2000 \
    7382        srv/net/netif/lo \
    7483        srv/net/il/arp \
     
    7887        srv/net/tl/tcp \
    7988        srv/net/net \
    80         srv/net/netstart \
    81         app/netecho \
    82         app/nettest1 \
    83         app/nettest2 \
    84         app/ping
     89        drv/root \
     90        drv/rootvirt \
     91        drv/test1 \
     92        drv/test2
    8593
    8694## Networking
    8795#
    8896
    89 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y)
    90         LIBN = \
    91                 srv/net/nil/eth \
    92                 srv/net/nil/nildummy
    93 else
    94         DIRS += \
    95                 srv/net/nil/eth \
    96                 srv/net/nil/nildummy
    97 endif
     97DIRS += \
     98        srv/net/nil/eth \
     99        srv/net/nil/nildummy
    98100
    99101## Platform-specific hardware support
     
    105107
    106108ifeq ($(UARCH),amd64)
    107         DIRS += srv/hw/bus/pci
     109        DIRS += \
     110                drv/rootpc \
     111                drv/pciintel \
     112                drv/isa \
     113                drv/ns8250 \
     114                srv/hw/irc/apic \
     115                srv/hw/irc/i8259
    108116endif
    109117
    110118ifeq ($(UARCH),ia32)
    111         DIRS += srv/hw/bus/pci
     119        DIRS += \
     120                drv/rootpc \
     121                drv/pciintel \
     122                drv/isa \
     123                drv/ns8250 \
     124                srv/hw/irc/apic \
     125                srv/hw/irc/i8259
    112126endif
    113127
     
    118132ifeq ($(UARCH),sparc64)
    119133        DIRS += \
    120                 srv/hw/cir/fhc \
    121                 srv/hw/cir/obio
     134                srv/hw/irc/fhc \
     135                srv/hw/irc/obio
    122136endif
    123137
     
    132146        lib/softint \
    133147        lib/softfloat \
    134         lib/socket \
     148        lib/drv \
     149        lib/packet \
    135150        lib/net
    136 
    137 ifeq ($(UARCH),amd64)
    138         LIBS += lib/pci
    139 endif
    140 
    141 ifeq ($(UARCH),ia32)
    142         LIBS += lib/pci
    143 endif
    144 
    145151
    146152LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note: See TracChangeset for help on using the changeset viewer.