Changes in uspace/Makefile [3bd76491:caa8a94] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    r3bd76491 rcaa8a94  
    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 \
     
    5354        app/nettest2 \
    5455        app/ping \
     56        app/websrv \
     57        app/sysinfo \
    5558        srv/clip \
    5659        srv/devmap \
     
    6972        srv/fs/tmpfs \
    7073        srv/fs/devfs \
    71         srv/fs/pipefs \
    72         srv/fs/ext2 \
    7374        srv/hid/adb_mouse \
    7475        srv/hid/char_mouse \
     
    7879        srv/hw/char/i8042 \
    7980        srv/hw/char/s3c24xx_uart \
    80         srv/hw/netif/dp8390 \
    81         srv/net/cfg \
     81        srv/hw/netif/ne2000 \
    8282        srv/net/netif/lo \
    8383        srv/net/il/arp \
     
    8787        srv/net/tl/tcp \
    8888        srv/net/net \
    89         drv/root
     89        drv/root \
     90        drv/rootvirt \
     91        drv/test1 \
     92        drv/test2
    9093
    9194## Networking
    9295#
    9396
    94 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y)
    95         LIBN = \
    96                 srv/net/nil/eth \
    97                 srv/net/nil/nildummy
    98 else
    99         DIRS += \
    100                 srv/net/nil/eth \
    101                 srv/net/nil/nildummy
    102 endif
     97DIRS += \
     98        srv/net/nil/eth \
     99        srv/net/nil/nildummy
    103100
    104101## Platform-specific hardware support
     
    110107
    111108ifeq ($(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
    112116endif
    113117
    114118ifeq ($(UARCH),ia32)
    115         DIRS += drv/rootia32
    116         DIRS += drv/pciintel
    117         DIRS += drv/isa
    118         DIRS += drv/ns8250
     119        DIRS += \
     120                drv/rootpc \
     121                drv/pciintel \
     122                drv/isa \
     123                drv/ns8250 \
     124                srv/hw/irc/apic \
     125                srv/hw/irc/i8259
    119126endif
    120127
     
    125132ifeq ($(UARCH),sparc64)
    126133        DIRS += \
    127                 srv/hw/cir/fhc \
    128                 srv/hw/cir/obio
     134                srv/hw/irc/fhc \
     135                srv/hw/irc/obio
    129136endif
    130137
     
    141148        lib/drv \
    142149        lib/packet \
    143         lib/net \
    144         lib/ext2
     150        lib/net
    145151
    146152LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note: See TracChangeset for help on using the changeset viewer.