Changes in uspace/Makefile [2989c7e:bdfdc51c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r2989c7e rbdfdc51c 45 45 app/download \ 46 46 app/edit \ 47 app/fdisk \ 47 48 app/fontviewer \ 48 49 app/getterm \ 49 app/hdisk \50 50 app/init \ 51 51 app/inet \ … … 60 60 app/mkmfs \ 61 61 app/modplay \ 62 app/netecho \ 62 63 app/nterm \ 63 64 app/redir \ … … 80 81 app/ping \ 81 82 app/sysinfo \ 83 app/sysinst \ 82 84 app/mkbd \ 83 85 app/date \ 86 app/vcalc \ 84 87 app/vdemo \ 85 88 app/viewer \ … … 89 92 app/wavplay \ 90 93 app/websrv \ 94 app/wifi_supplicant \ 91 95 srv/audio/hound \ 92 96 srv/clipboard \ … … 111 115 srv/bd/file_bd \ 112 116 srv/bd/rd \ 113 srv/bd/part/guid_part \ 114 srv/bd/part/mbr_part \ 117 srv/bd/vbd \ 115 118 srv/fs/exfat \ 116 119 srv/fs/udf \ … … 121 124 srv/fs/locfs \ 122 125 srv/fs/ext4fs \ 126 srv/volsrv \ 123 127 srv/hid/compositor \ 124 128 srv/hid/console \ … … 136 140 drv/block/ahci \ 137 141 drv/block/ata_bd \ 142 drv/block/ddisk \ 138 143 drv/char/i8042 \ 139 144 drv/char/pl050 \ 140 145 drv/char/ps2mouse \ 146 drv/char/atkbd \ 141 147 drv/char/xtkbd \ 142 148 drv/test/test1 \ … … 147 153 drv/bus/usb/ohci \ 148 154 drv/bus/usb/uhci \ 149 drv/bus/usb/uhcirh \150 155 drv/bus/usb/usbflbk \ 151 156 drv/bus/usb/usbhid \ … … 158 163 drv/nic/rtl8139 \ 159 164 drv/nic/rtl8169 \ 165 drv/nic/ar9271 \ 160 166 drv/platform/icp 161 167 … … 175 181 176 182 ifeq ($(UARCH), $(filter $(UARCH),mips32 mips32eb)) 183 ifeq ($(MACHINE),msim) 184 DIRS += \ 185 drv/platform/msim 186 else 177 187 DIRS += \ 178 188 drv/platform/malta \ … … 180 190 drv/bus/isa 181 191 endif 192 endif 182 193 183 194 ifeq ($(UARCH),ppc32) … … 198 209 drv/fb/amdm37x_dispc \ 199 210 srv/hw/irc/icp-ic 211 endif 212 213 ## Dynamic linking tests 214 # 215 ifeq ($(CONFIG_BUILD_SHARED_LIBS),y) 216 DIRS += \ 217 app/dltest \ 218 app/dltests 200 219 endif 201 220 … … 207 226 lib/fs \ 208 227 lib/block \ 228 lib/crypto \ 209 229 lib/clui \ 230 lib/dltest \ 231 lib/fdisk \ 210 232 lib/fmtutil \ 211 233 lib/scsi \ … … 220 242 lib/softrend \ 221 243 lib/draw \ 244 lib/label \ 222 245 lib/math \ 223 246 lib/nettl \ … … 226 249 lib/trackmod \ 227 250 lib/uri \ 228 lib/urcu \229 251 lib/usb \ 230 252 lib/usbhost \ … … 236 258 lib/bithenge \ 237 259 lib/posix \ 238 lib/mbr \ 239 lib/gpt 260 lib/ieee80211 240 261 241 262 LIBC_BUILD = $(addsuffix .build,$(LIBC)) … … 251 272 all: $(BUILDS) $(BUILDS_TESTS) 252 273 253 $(BUILDS_TESTS): $( BUILDS)274 $(BUILDS_TESTS): $(LIBC_BUILD) $(LIBS_BUILD) $(LIBN_BUILD) 254 275 $(MAKE) -C $(basename $@) all-test PRECHECK=$(PRECHECK) 255 276
Note:
See TracChangeset
for help on using the changeset viewer.