Changes in uspace/Makefile [caa8a94:f09d891] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    rcaa8a94 rf09d891  
    3838        app/getterm \
    3939        app/init \
    40         app/kill \
    41         app/killall \
    4240        app/klog \
    4341        app/mkfat \
     
    4644        app/stats \
    4745        app/taskdump \
     46        app/tasks \
    4847        app/tester \
    4948        app/tetris \
    5049        app/trace \
    5150        app/top \
    52         app/netecho \
    53         app/nettest1 \
    54         app/nettest2 \
    55         app/ping \
    56         app/websrv \
    57         app/sysinfo \
    5851        srv/clip \
    5952        srv/devmap \
    60         srv/devman \
    6153        srv/loader \
    6254        srv/ns \
     
    7466        srv/hid/adb_mouse \
    7567        srv/hid/char_mouse \
    76         srv/hid/s3c24xx_ts \
    7768        srv/hid/fb \
    7869        srv/hid/kbd \
    7970        srv/hw/char/i8042 \
    80         srv/hw/char/s3c24xx_uart \
    81         srv/hw/netif/ne2000 \
     71        srv/hw/netif/dp8390 \
     72        srv/net/cfg \
    8273        srv/net/netif/lo \
    8374        srv/net/il/arp \
     
    8778        srv/net/tl/tcp \
    8879        srv/net/net \
    89         drv/root \
    90         drv/rootvirt \
    91         drv/test1 \
    92         drv/test2
     80        srv/net/netstart \
     81        app/netecho \
     82        app/nettest1 \
     83        app/nettest2 \
     84        app/ping
    9385
    9486## Networking
    9587#
    9688
    97 DIRS += \
    98         srv/net/nil/eth \
    99         srv/net/nil/nildummy
     89ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y)
     90        LIBN = \
     91                srv/net/nil/eth \
     92                srv/net/nil/nildummy
     93else
     94        DIRS += \
     95                srv/net/nil/eth \
     96                srv/net/nil/nildummy
     97endif
    10098
    10199## Platform-specific hardware support
     
    107105
    108106ifeq ($(UARCH),amd64)
    109         DIRS += \
    110                 drv/rootpc \
    111                 drv/pciintel \
    112                 drv/isa \
    113                 drv/ns8250 \
    114                 srv/hw/irc/apic \
    115                 srv/hw/irc/i8259
     107        DIRS += srv/hw/bus/pci
    116108endif
    117109
    118110ifeq ($(UARCH),ia32)
    119         DIRS += \
    120                 drv/rootpc \
    121                 drv/pciintel \
    122                 drv/isa \
    123                 drv/ns8250 \
    124                 srv/hw/irc/apic \
    125                 srv/hw/irc/i8259
     111        DIRS += srv/hw/bus/pci
    126112endif
    127113
     
    132118ifeq ($(UARCH),sparc64)
    133119        DIRS += \
    134                 srv/hw/irc/fhc \
    135                 srv/hw/irc/obio
     120                srv/hw/cir/fhc \
     121                srv/hw/cir/obio
    136122endif
    137123
     
    146132        lib/softint \
    147133        lib/softfloat \
    148         lib/drv \
    149         lib/packet \
     134        lib/socket \
    150135        lib/net
     136
     137ifeq ($(UARCH),amd64)
     138        LIBS += lib/pci
     139endif
     140
     141ifeq ($(UARCH),ia32)
     142        LIBS += lib/pci
     143endif
     144
    151145
    152146LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note: See TracChangeset for help on using the changeset viewer.