Changes in uspace/Makefile [e5291e0:3f10d92] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
re5291e0 r3f10d92 35 35 DIRS = \ 36 36 app/bdsh \ 37 app/blkdump \38 app/bnchmark \39 app/devctl \40 37 app/edit \ 41 app/ext2info \42 38 app/getterm \ 43 39 app/init \ … … 45 41 app/killall \ 46 42 app/klog \ 47 app/locinfo \48 app/lsusb \49 43 app/mkfat \ 50 app/mkmfs \51 44 app/redir \ 52 45 app/sbi \ 53 app/sportdmp \54 46 app/stats \ 55 47 app/taskdump \ 56 48 app/tester \ 57 app/testread \58 49 app/tetris \ 59 50 app/trace \ 60 51 app/top \ 61 app/usbinfo \62 app/vuhid \63 52 app/netecho \ 64 53 app/nettest1 \ … … 67 56 app/websrv \ 68 57 app/sysinfo \ 69 app/mkbd \70 58 srv/clip \ 71 srv/ loc\59 srv/devmap \ 72 60 srv/devman \ 73 61 srv/loader \ … … 81 69 srv/bd/part/guid_part \ 82 70 srv/bd/part/mbr_part \ 83 srv/fs/exfat \84 71 srv/fs/fat \ 85 srv/fs/cdfs \86 72 srv/fs/tmpfs \ 87 srv/fs/mfs \ 88 srv/fs/locfs \ 89 srv/fs/ext2fs \ 90 srv/hid/console \ 73 srv/fs/devfs \ 74 srv/hid/adb_mouse \ 75 srv/hid/char_mouse \ 91 76 srv/hid/s3c24xx_ts \ 92 77 srv/hid/fb \ 93 srv/hid/ input\78 srv/hid/kbd \ 94 79 srv/hw/char/i8042 \ 95 80 srv/hw/char/s3c24xx_uart \ 81 srv/hw/netif/ne2000 \ 82 srv/net/netif/lo \ 96 83 srv/net/il/arp \ 97 84 srv/net/il/ip \ … … 99 86 srv/net/tl/udp \ 100 87 srv/net/tl/tcp \ 88 srv/net/net \ 89 drv/root \ 90 drv/rootvirt \ 91 drv/test1 \ 92 drv/test2 93 94 ## Networking 95 # 96 97 DIRS += \ 101 98 srv/net/nil/eth \ 102 srv/net/nil/nildummy \ 103 srv/net/net \ 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) 123 DIRS += \ 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 99 srv/net/nil/nildummy 134 100 135 101 ## Platform-specific hardware support 136 102 # 137 103 104 ifneq ($(UARCH),abs32le) 105 DIRS += srv/hid/console 106 endif 107 138 108 ifeq ($(UARCH),amd64) 139 109 DIRS += \ 140 drv/ infrastructure/rootpc \141 drv/ bus/pci/pciintel \142 drv/ bus/isa \143 drv/ char/ns8250 \110 drv/rootpc \ 111 drv/pciintel \ 112 drv/isa \ 113 drv/ns8250 \ 144 114 srv/hw/irc/apic \ 145 115 srv/hw/irc/i8259 … … 148 118 ifeq ($(UARCH),ia32) 149 119 DIRS += \ 150 drv/ infrastructure/rootpc \151 drv/ bus/pci/pciintel \152 drv/ bus/isa \153 drv/ char/ns8250 \120 drv/rootpc \ 121 drv/pciintel \ 122 drv/isa \ 123 drv/ns8250 \ 154 124 srv/hw/irc/apic \ 155 125 srv/hw/irc/i8259 … … 157 127 158 128 ifeq ($(UARCH),ppc32) 159 DIRS += \ 160 drv/infrastructure/rootmac \ 161 srv/hw/bus/cuda_adb 129 DIRS += srv/hw/bus/cuda_adb 162 130 endif 163 131 164 132 ifeq ($(UARCH),sparc64) 165 133 DIRS += \ 134 srv/hw/irc/fhc \ 166 135 srv/hw/irc/obio 167 136 endif … … 175 144 lib/block \ 176 145 lib/clui \ 177 lib/fmtutil \178 lib/scsi \179 146 lib/softint \ 180 147 lib/softfloat \ 181 148 lib/drv \ 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 149 lib/packet \ 150 lib/net 192 151 193 152 LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note:
See TracChangeset
for help on using the changeset viewer.