Changeset 59ecd4a in mainline for uspace/Makefile
- Timestamp:
- 2010-04-04T21:41:47Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5db9084
- Parents:
- 36a75a2 (diff), ee7e82a9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r36a75a2 r59ecd4a 41 41 app/mkfat \ 42 42 app/redir \ 43 app/sbi \ 43 44 app/taskdump \ 44 45 app/tester \ … … 64 65 srv/hid/fb \ 65 66 srv/hid/kbd \ 66 srv/hw/char/i8042 67 srv/hw/char/i8042 \ 68 srv/hw/netif/dp8390 67 69 68 70 ## Platform-specific hardware support … … 94 96 # 95 97 96 ifeq ($(CONFIG_NETIF_DP8390),y)97 DIRS += srv/net/netif/dp839098 endif99 100 98 NETWORKING_COMMON = \ 101 99 srv/net/netif/lo \ … … 103 101 srv/net/nil/nildummy \ 104 102 srv/net/net \ 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 103 srv/net/netstart \ 104 app/netecho \ 105 app/nettest1 \ 106 app/nettest2 \ 107 app/ping 111 108 112 109 NETWORKING_MODULAR = \ … … 127 124 lib/softint \ 128 125 lib/softfloat \ 126 lib/socket \ 127 lib/net \ 128 lib/netif 129 129 130 130 ifeq ($(UARCH),amd64) … … 148 148 endif 149 149 150 ifeq ($(CONFIG_NETWORKING),none)151 BUILDS := $(addsuffix .build,$(DIRS))152 endif153 154 150 CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(NETWORKING_COMMON)) $(addsuffix .clean,$(NETWORKING_MODULAR)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC)) 155 151
Note:
See TracChangeset
for help on using the changeset viewer.