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


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    rb8100da ra79d88d  
    4646        app/tasks \
    4747        app/tester \
     48        app/test_serial \
    4849        app/tetris \
    4950        app/trace \
    5051        app/top \
    51         app/virtusbkbd \
     52        app/netecho \
     53        app/nettest1 \
     54        app/nettest2 \
     55        app/ping \
    5256        srv/clip \
    5357        srv/devmap \
     58        srv/devman \
    5459        srv/loader \
    5560        srv/ns \
     
    6772        srv/hid/adb_mouse \
    6873        srv/hid/char_mouse \
     74        srv/hid/s3c24xx_ts \
    6975        srv/hid/fb \
    7076        srv/hid/kbd \
     
    7278        srv/hw/char/s3c24xx_uart \
    7379        srv/hw/netif/dp8390 \
    74         srv/hw/bus/usb/hcd/virtual \
    7580        srv/net/cfg \
    7681        srv/net/netif/lo \
     
    8287        srv/net/net \
    8388        srv/net/netstart \
    84         app/usb \
    85         app/netecho \
    86         app/nettest1 \
    87         app/nettest2 \
    88         app/ping
     89        drv/root
    8990
    9091## Networking
     
    109110
    110111ifeq ($(UARCH),amd64)
    111         DIRS += srv/hw/bus/pci
    112112endif
    113113
    114114ifeq ($(UARCH),ia32)
    115         DIRS += srv/hw/bus/pci
     115        DIRS += drv/rootia32
     116        DIRS += drv/pciintel
     117        DIRS += drv/isa
     118        DIRS += drv/ns8250
    116119endif
    117120
     
    136139        lib/softint \
    137140        lib/softfloat \
    138         lib/socket \
     141        lib/drv \
     142        lib/packet \
    139143        lib/net
    140 
    141 ifeq ($(UARCH),amd64)
    142         LIBS += lib/pci
    143         LIBS += lib/usb
    144         LIBS += lib/usbvirt
    145 endif
    146 
    147 ifeq ($(UARCH),ia32)
    148         LIBS += lib/pci
    149         LIBS += lib/usb
    150         LIBS += lib/usbvirt
    151 endif
    152 
    153144
    154145LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note: See TracChangeset for help on using the changeset viewer.