Changes in uspace/Makefile [2989c7e:af2254ec] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r2989c7e raf2254ec 41 41 app/corecfg \ 42 42 app/devctl \ 43 app/dltest \ 43 44 app/dnscfg \ 44 45 app/dnsres \ 45 46 app/download \ 46 47 app/edit \ 48 app/fdisk \ 47 49 app/fontviewer \ 48 50 app/getterm \ 49 app/hdisk \50 51 app/init \ 51 52 app/inet \ … … 60 61 app/mkmfs \ 61 62 app/modplay \ 63 app/netecho \ 62 64 app/nterm \ 63 65 app/redir \ … … 80 82 app/ping \ 81 83 app/sysinfo \ 84 app/sysinst \ 82 85 app/mkbd \ 83 86 app/date \ … … 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 \ … … 158 164 drv/nic/rtl8139 \ 159 165 drv/nic/rtl8169 \ 166 drv/nic/ar9271 \ 160 167 drv/platform/icp 161 168 … … 175 182 176 183 ifeq ($(UARCH), $(filter $(UARCH),mips32 mips32eb)) 184 ifeq ($(MACHINE),msim) 185 DIRS += \ 186 drv/platform/msim 187 else 177 188 DIRS += \ 178 189 drv/platform/malta \ 179 190 drv/bus/pci/pciintel \ 180 191 drv/bus/isa 192 endif 181 193 endif 182 194 … … 207 219 lib/fs \ 208 220 lib/block \ 221 lib/crypto \ 209 222 lib/clui \ 223 lib/dltest \ 224 lib/fdisk \ 210 225 lib/fmtutil \ 211 226 lib/scsi \ … … 220 235 lib/softrend \ 221 236 lib/draw \ 237 lib/label \ 222 238 lib/math \ 223 239 lib/nettl \ … … 226 242 lib/trackmod \ 227 243 lib/uri \ 228 lib/urcu \229 244 lib/usb \ 230 245 lib/usbhost \ … … 236 251 lib/bithenge \ 237 252 lib/posix \ 238 lib/mbr \ 239 lib/gpt 253 lib/ieee80211 240 254 241 255 LIBC_BUILD = $(addsuffix .build,$(LIBC)) … … 251 265 all: $(BUILDS) $(BUILDS_TESTS) 252 266 253 $(BUILDS_TESTS): $( BUILDS)267 $(BUILDS_TESTS): $(LIBC_BUILD) $(LIBS_BUILD) $(LIBN_BUILD) 254 268 $(MAKE) -C $(basename $@) all-test PRECHECK=$(PRECHECK) 255 269
Note:
See TracChangeset
for help on using the changeset viewer.