Changes in uspace/Makefile [c245f16e:07b9203e] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    rc245f16e r07b9203e  
    4949        app/trace \
    5050        app/top \
     51        app/usbinfo \
     52        app/virtusbkbd \
    5153        app/netecho \
    5254        app/nettest1 \
     
    8688        srv/net/net \
    8789        drv/root \
    88         drv/rootvirt \
    89         drv/test1 \
    90         drv/test2
     90        drv/vhc
    9191
    9292## Networking
     
    111111
    112112ifeq ($(UARCH),amd64)
    113         DIRS += drv/rootpc
     113endif
     114
     115ifeq ($(UARCH),ia32)
     116        DIRS += drv/rootia32
    114117        DIRS += drv/pciintel
    115118        DIRS += drv/isa
    116119        DIRS += drv/ns8250
    117 endif
    118 
    119 ifeq ($(UARCH),ia32)
    120         DIRS += drv/rootpc
    121         DIRS += drv/pciintel
    122         DIRS += drv/isa
    123         DIRS += drv/ns8250
     120        DIRS += drv/uhci
     121        DIRS += drv/usbhub
     122        DIRS += drv/usbkbd
    124123endif
    125124
     
    147146        lib/packet \
    148147        lib/net
     148
     149ifeq ($(UARCH),amd64)
     150        LIBS += lib/usb
     151        LIBS += lib/usbvirt
     152endif
     153
     154ifeq ($(UARCH),ia32)
     155        LIBS += lib/usb
     156        LIBS += lib/usbvirt
     157endif
    149158
    150159LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note: See TracChangeset for help on using the changeset viewer.