Changes in uspace/Makefile [cc3c2a1c:f63a591d] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    rcc3c2a1c rf63a591d  
    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 \
    5651        srv/clip \
    5752        srv/devmap \
    58         srv/devman \
    5953        srv/loader \
    6054        srv/ns \
     
    8680        srv/net/tl/tcp \
    8781        srv/net/net \
    88         drv/root
     82        srv/net/netstart \
     83        app/netecho \
     84        app/nettest1 \
     85        app/nettest2 \
     86        app/ping
    8987
    9088## Networking
     
    109107
    110108ifeq ($(UARCH),amd64)
     109        DIRS += srv/hw/bus/pci
    111110endif
    112111
    113112ifeq ($(UARCH),ia32)
    114         DIRS += drv/rootia32
    115         DIRS += drv/pciintel
    116         DIRS += drv/isa
    117         DIRS += drv/ns8250
     113        DIRS += srv/hw/bus/pci
    118114endif
    119115
     
    138134        lib/softint \
    139135        lib/softfloat \
    140         lib/drv \
    141136        lib/packet \
    142137        lib/net
     138
     139ifeq ($(UARCH),amd64)
     140        LIBS += lib/pci
     141endif
     142
     143ifeq ($(UARCH),ia32)
     144        LIBS += lib/pci
     145endif
     146
    143147
    144148LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note: See TracChangeset for help on using the changeset viewer.