Changes in uspace/Makefile [684f767:63f8966] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r684f767 r63f8966 27 27 # 28 28 29 ## Include configuration 29 -include ../Makefile.common 30 -include ../Makefile.config 31 32 ## Common binaries 30 33 # 31 32 -include ../Makefile.config33 34 34 35 DIRS = \ … … 65 66 srv/hw/char/i8042 66 67 68 ## Platform-specific hardware support 69 # 70 67 71 ifneq ($(UARCH),abs32le) 68 72 DIRS += srv/hid/console … … 87 91 endif 88 92 89 LIBC = lib/libc 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 122 LIBC = lib/c 90 123 LIBS = \ 91 lib/ libfs \92 lib/ libblock \124 lib/fs \ 125 lib/block \ 93 126 lib/softint \ 94 127 lib/softfloat \ 95 128 96 129 ifeq ($(UARCH),amd64) 97 LIBS += lib/ libpci130 LIBS += lib/pci 98 131 endif 99 132 100 133 ifeq ($(UARCH),ia32) 101 LIBS += lib/ libpci134 LIBS += lib/pci 102 135 endif 103 136 … … 106 139 LIBS_BUILD = $(addsuffix .build,$(LIBS)) 107 140 108 BUILDS := $(addsuffix .build,$(DIRS)) 109 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)) 110 154 111 155 .PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(BUILDS) $(CLEANS) clean
Note:
See TracChangeset
for help on using the changeset viewer.