Changes in uspace/Makefile [849ed54:36a75a2] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    r849ed54 r36a75a2  
    4141        app/mkfat \
    4242        app/redir \
    43         app/sbi \
    4443        app/taskdump \
    4544        app/tester \
     
    6564        srv/hid/fb \
    6665        srv/hid/kbd \
    67         srv/hw/char/i8042 \
    68         srv/hw/netif/dp8390
     66        srv/hw/char/i8042
    6967
    7068## Platform-specific hardware support
     
    9694#
    9795
     96ifeq ($(CONFIG_NETIF_DP8390),y)
     97        DIRS += srv/net/netif/dp8390
     98endif
     99
    98100NETWORKING_COMMON = \
    99101        srv/net/netif/lo \
     
    101103        srv/net/nil/nildummy \
    102104        srv/net/net \
    103         srv/net/netstart \
    104         app/netecho \
    105         app/nettest1 \
    106         app/nettest2 \
    107         app/ping
     105        srv/net/net/start \
     106        srv/net/socket \
     107        srv/net/app/echo \
     108        srv/net/app/ping \
     109        srv/net/app/nettest1 \
     110        srv/net/app/nettest2
    108111
    109112NETWORKING_MODULAR = \
     
    124127        lib/softint \
    125128        lib/softfloat \
    126         lib/socket \
    127         lib/net \
    128         lib/netif
    129129
    130130ifeq ($(UARCH),amd64)
     
    148148endif
    149149
     150ifeq ($(CONFIG_NETWORKING),none)
     151        BUILDS := $(addsuffix .build,$(DIRS))
     152endif
     153
    150154CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(NETWORKING_COMMON)) $(addsuffix .clean,$(NETWORKING_MODULAR)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC))
    151155
Note: See TracChangeset for help on using the changeset viewer.