Changeset 1b1164e8 in mainline for uspace/Makefile
- Timestamp:
- 2010-03-23T14:44:00Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 63f8966
- Parents:
- d99c1d2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
rd99c1d2 r1b1164e8 27 27 # 28 28 29 ## Include configuration30 #31 32 29 -include ../Makefile.common 33 30 -include ../Makefile.config 31 32 ## Common binaries 33 # 34 34 35 35 DIRS = \ … … 64 64 srv/hid/fb \ 65 65 srv/hid/kbd \ 66 srv/hw/char/i8042 \ 67 srv/net 66 srv/hw/char/i8042 67 68 ## Platform-specific hardware support 69 # 68 70 69 71 ifneq ($(UARCH),abs32le) … … 89 91 endif 90 92 93 ## Networking 94 # 95 96 ifeq ($(CONFIG_NETIF_DP8390),y) 97 DIRS += srv/net/netif/dp8390 98 endif 99 100 NETWORKING_COMMON += \ 101 srv/net/netif/lo \ 102 srv/net/nil/eth \ 103 srv/net/nil/nildummy \ 104 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 111 112 NETWORKING_MODULAR = \ 113 srv/net/il/arp \ 114 srv/net/il/ip \ 115 srv/net/tl/icmp \ 116 srv/net/tl/udp \ 117 srv/net/tl/tcp 118 119 ## System libraries 120 # 121 91 122 LIBC = lib/libc 92 123 LIBS = \ … … 108 139 LIBS_BUILD = $(addsuffix .build,$(LIBS)) 109 140 110 BUILDS := $(addsuffix .build,$(DIRS)) 111 CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC)) 141 ifeq ($(CONFIG_NETWORKING),modular) 142 BUILDS := $(addsuffix .build,$(DIRS)) $(addsuffix .build,$(NETWORKING_COMMON)) $(addsuffix .build,$(NETWORKING_MODULAR)) 143 endif 144 145 ifeq ($(CONFIG_NETWORKING),module) 146 BUILDS := $(addsuffix .build,$(DIRS)) $(addsuffix .build,$(NETWORKING_COMMON)) 147 endif 148 149 ifeq ($(CONFIG_NETWORKING),none) 150 BUILDS := $(addsuffix .build,$(DIRS)) 151 endif 152 153 CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(NETWORKING_COMMON)) $(addsuffix .clean,$(NETWORKING_MODULAR)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC)) 112 154 113 155 .PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(BUILDS) $(CLEANS) clean
Note:
See TracChangeset
for help on using the changeset viewer.