Changes in uspace/Makefile [a79d88d:b8100da] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    ra79d88d rb8100da  
    4646        app/tasks \
    4747        app/tester \
    48         app/test_serial \
    4948        app/tetris \
    5049        app/trace \
    5150        app/top \
    52         app/netecho \
    53         app/nettest1 \
    54         app/nettest2 \
    55         app/ping \
     51        app/virtusbkbd \
    5652        srv/clip \
    5753        srv/devmap \
    58         srv/devman \
    5954        srv/loader \
    6055        srv/ns \
     
    7267        srv/hid/adb_mouse \
    7368        srv/hid/char_mouse \
    74         srv/hid/s3c24xx_ts \
    7569        srv/hid/fb \
    7670        srv/hid/kbd \
     
    7872        srv/hw/char/s3c24xx_uart \
    7973        srv/hw/netif/dp8390 \
     74        srv/hw/bus/usb/hcd/virtual \
    8075        srv/net/cfg \
    8176        srv/net/netif/lo \
     
    8782        srv/net/net \
    8883        srv/net/netstart \
    89         drv/root
     84        app/usb \
     85        app/netecho \
     86        app/nettest1 \
     87        app/nettest2 \
     88        app/ping
    9089
    9190## Networking
     
    110109
    111110ifeq ($(UARCH),amd64)
     111        DIRS += srv/hw/bus/pci
    112112endif
    113113
    114114ifeq ($(UARCH),ia32)
    115         DIRS += drv/rootia32
    116         DIRS += drv/pciintel
    117         DIRS += drv/isa
    118         DIRS += drv/ns8250
     115        DIRS += srv/hw/bus/pci
    119116endif
    120117
     
    139136        lib/softint \
    140137        lib/softfloat \
    141         lib/drv \
    142         lib/packet \
     138        lib/socket \
    143139        lib/net
     140
     141ifeq ($(UARCH),amd64)
     142        LIBS += lib/pci
     143        LIBS += lib/usb
     144        LIBS += lib/usbvirt
     145endif
     146
     147ifeq ($(UARCH),ia32)
     148        LIBS += lib/pci
     149        LIBS += lib/usb
     150        LIBS += lib/usbvirt
     151endif
     152
    144153
    145154LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note: See TracChangeset for help on using the changeset viewer.