Changes in uspace/Makefile [a9b5b5f:4b4c797] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    ra9b5b5f r4b4c797  
    4646        app/tasks \
    4747        app/tester \
     48        app/test_serial \
    4849        app/tetris \
    4950        app/trace \
    5051        app/top \
     52        app/virtusbkbd \
     53        app/netstart \
     54        app/netecho \
     55        app/nettest1 \
     56        app/nettest2 \
     57        app/ping \
    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 \
     
    7988        srv/net/tl/tcp \
    8089        srv/net/net \
    81         srv/net/netstart \
    82         app/netecho \
    83         app/nettest1 \
    84         app/nettest2 \
    85         app/ping
     90        drv/root \
     91        drv/vhc
    8692
    8793## Networking
     
    106112
    107113ifeq ($(UARCH),amd64)
    108         DIRS += srv/hw/bus/pci
    109114endif
    110115
    111116ifeq ($(UARCH),ia32)
    112         DIRS += srv/hw/bus/pci
     117        DIRS += drv/rootia32
     118        DIRS += drv/pciintel
     119        DIRS += drv/isa
     120        DIRS += drv/ns8250
     121        DIRS += drv/uhci
     122        DIRS += drv/usbkbd
    113123endif
    114124
     
    133143        lib/softint \
    134144        lib/softfloat \
    135         lib/socket \
     145        lib/drv \
     146        lib/packet \
    136147        lib/net
    137148
    138149ifeq ($(UARCH),amd64)
    139         LIBS += lib/pci
     150        LIBS += lib/usb
     151        LIBS += lib/usbvirt
    140152endif
    141153
    142154ifeq ($(UARCH),ia32)
    143         LIBS += lib/pci
     155        LIBS += lib/usb
     156        LIBS += lib/usbvirt
    144157endif
    145 
    146158
    147159LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note: See TracChangeset for help on using the changeset viewer.