Changeset b0f00a9 in mainline for uspace/Makefile
- Timestamp:
- 2011-11-06T22:21:05Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 898e847
- Parents:
- 2bdf8313 (diff), 7b5f4c9 (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
r2bdf8313 rb0f00a9 35 35 DIRS = \ 36 36 app/bdsh \ 37 app/blkdump \ 38 app/bnchmark \ 39 app/devctl \ 37 40 app/edit \ 41 app/ext2info \ 38 42 app/getterm \ 39 43 app/init \ … … 41 45 app/killall \ 42 46 app/klog \ 47 app/locinfo \ 48 app/lsusb \ 43 49 app/mkfat \ 50 app/mkmfs \ 44 51 app/redir \ 45 52 app/sbi \ 53 app/sportdmp \ 46 54 app/stats \ 47 55 app/taskdump \ 48 56 app/tester \ 57 app/testread \ 49 58 app/tetris \ 50 59 app/trace \ 51 60 app/top \ 61 app/usbinfo \ 62 app/vuhid \ 52 63 app/netecho \ 53 64 app/nettest1 \ … … 56 67 app/websrv \ 57 68 app/sysinfo \ 69 app/mkbd \ 58 70 srv/clip \ 59 srv/ devmap\71 srv/loc \ 60 72 srv/devman \ 61 73 srv/loader \ … … 69 81 srv/bd/part/guid_part \ 70 82 srv/bd/part/mbr_part \ 83 srv/fs/exfat \ 71 84 srv/fs/fat \ 85 srv/fs/cdfs \ 72 86 srv/fs/tmpfs \ 73 srv/fs/devfs \ 74 srv/hid/adb_mouse \ 75 srv/hid/char_mouse \ 87 srv/fs/mfs \ 88 srv/fs/locfs \ 89 srv/fs/ext2fs \ 90 srv/hid/console \ 76 91 srv/hid/s3c24xx_ts \ 77 92 srv/hid/fb \ 78 srv/hid/ kbd\93 srv/hid/input \ 79 94 srv/hw/char/i8042 \ 80 95 srv/hw/char/s3c24xx_uart \ 81 srv/hw/netif/ne2000 \82 srv/net/netif/lo \83 96 srv/net/il/arp \ 84 97 srv/net/il/ip \ … … 86 99 srv/net/tl/udp \ 87 100 srv/net/tl/tcp \ 101 srv/net/nil/eth \ 102 srv/net/nil/nildummy \ 88 103 srv/net/net \ 89 drv/root \ 90 drv/rootvirt \ 91 drv/test1 \ 92 drv/test2 93 94 ## Networking 95 # 96 104 drv/infrastructure/root \ 105 drv/infrastructure/rootvirt \ 106 drv/test/test1 \ 107 drv/test/test2 \ 108 drv/test/test3 \ 109 drv/bus/usb/ehci \ 110 drv/bus/usb/ohci \ 111 drv/bus/usb/uhci \ 112 drv/bus/usb/uhcirh \ 113 drv/bus/usb/usbflbk \ 114 drv/bus/usb/usbhid \ 115 drv/bus/usb/usbhub \ 116 drv/bus/usb/usbmast \ 117 drv/bus/usb/usbmid \ 118 drv/bus/usb/vhc \ 119 drv/nic/lo \ 120 drv/nic/ne2k 121 122 ifeq ($(CONFIG_PCC),y) 97 123 DIRS += \ 98 srv/net/nil/eth \ 99 srv/net/nil/nildummy 124 app/cc \ 125 app/ccom \ 126 app/ccom/mkext \ 127 app/cpp 128 endif 129 130 ifeq ($(CONFIG_BINUTILS),y) 131 DIRS += \ 132 app/binutils 133 endif 100 134 101 135 ## Platform-specific hardware support 102 136 # 103 137 104 ifneq ($(UARCH),abs32le)105 DIRS += srv/hid/console106 endif107 108 138 ifeq ($(UARCH),amd64) 109 139 DIRS += \ 110 drv/ rootpc \111 drv/ pciintel \112 drv/ isa \113 drv/ ns8250 \140 drv/infrastructure/rootpc \ 141 drv/bus/pci/pciintel \ 142 drv/bus/isa \ 143 drv/char/ns8250 \ 114 144 srv/hw/irc/apic \ 115 145 srv/hw/irc/i8259 … … 118 148 ifeq ($(UARCH),ia32) 119 149 DIRS += \ 120 drv/ rootpc \121 drv/ pciintel \122 drv/ isa \123 drv/ ns8250 \150 drv/infrastructure/rootpc \ 151 drv/bus/pci/pciintel \ 152 drv/bus/isa \ 153 drv/char/ns8250 \ 124 154 srv/hw/irc/apic \ 125 155 srv/hw/irc/i8259 … … 127 157 128 158 ifeq ($(UARCH),ppc32) 129 DIRS += srv/hw/bus/cuda_adb 159 DIRS += \ 160 drv/infrastructure/rootmac \ 161 srv/hw/bus/cuda_adb 130 162 endif 131 163 132 164 ifeq ($(UARCH),sparc64) 133 165 DIRS += \ 134 srv/hw/irc/fhc \135 166 srv/hw/irc/obio 136 167 endif … … 144 175 lib/block \ 145 176 lib/clui \ 177 lib/fmtutil \ 178 lib/scsi \ 146 179 lib/softint \ 147 180 lib/softfloat \ 148 181 lib/drv \ 149 lib/packet \ 150 lib/net 182 lib/fb \ 183 lib/net \ 184 lib/nic \ 185 lib/ext2 \ 186 lib/usb \ 187 lib/usbhost \ 188 lib/usbdev \ 189 lib/usbhid \ 190 lib/usbvirt \ 191 lib/posix 151 192 152 193 LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note:
See TracChangeset
for help on using the changeset viewer.