Changes in uspace/Makefile [849ed54:36a75a2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r849ed54 r36a75a2 41 41 app/mkfat \ 42 42 app/redir \ 43 app/sbi \44 43 app/taskdump \ 45 44 app/tester \ … … 65 64 srv/hid/fb \ 66 65 srv/hid/kbd \ 67 srv/hw/char/i8042 \ 68 srv/hw/netif/dp8390 66 srv/hw/char/i8042 69 67 70 68 ## Platform-specific hardware support … … 96 94 # 97 95 96 ifeq ($(CONFIG_NETIF_DP8390),y) 97 DIRS += srv/net/netif/dp8390 98 endif 99 98 100 NETWORKING_COMMON = \ 99 101 srv/net/netif/lo \ … … 101 103 srv/net/nil/nildummy \ 102 104 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 108 111 109 112 NETWORKING_MODULAR = \ … … 124 127 lib/softint \ 125 128 lib/softfloat \ 126 lib/socket \127 lib/net \128 lib/netif129 129 130 130 ifeq ($(UARCH),amd64) … … 148 148 endif 149 149 150 ifeq ($(CONFIG_NETWORKING),none) 151 BUILDS := $(addsuffix .build,$(DIRS)) 152 endif 153 150 154 CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(NETWORKING_COMMON)) $(addsuffix .clean,$(NETWORKING_MODULAR)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC)) 151 155
Note:
See TracChangeset
for help on using the changeset viewer.