Changes in uspace/Makefile [7beb220:caa8a94] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r7beb220 rcaa8a94 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 44 app/redir \ … … 53 47 app/taskdump \ 54 48 app/tester \ 55 app/testread \56 49 app/tetris \ 57 50 app/trace \ 58 51 app/top \ 59 app/usbinfo \60 app/vuhid \61 52 app/netecho \ 62 53 app/nettest1 \ … … 65 56 app/websrv \ 66 57 app/sysinfo \ 67 app/mkbd \68 58 srv/clip \ 69 srv/ loc\59 srv/devmap \ 70 60 srv/devman \ 71 61 srv/loader \ … … 81 71 srv/fs/fat \ 82 72 srv/fs/tmpfs \ 83 srv/fs/ locfs \84 srv/ fs/ext2fs\85 srv/hid/c onsole \73 srv/fs/devfs \ 74 srv/hid/adb_mouse \ 75 srv/hid/char_mouse \ 86 76 srv/hid/s3c24xx_ts \ 87 77 srv/hid/fb \ 88 srv/hid/ input\78 srv/hid/kbd \ 89 79 srv/hw/char/i8042 \ 90 80 srv/hw/char/s3c24xx_uart \ … … 97 87 srv/net/tl/tcp \ 98 88 srv/net/net \ 99 drv/infrastructure/root \ 100 drv/infrastructure/rootvirt \ 101 drv/test/test1 \ 102 drv/test/test2 \ 103 drv/test/test3 \ 104 drv/bus/usb/ehci \ 105 drv/bus/usb/ohci \ 106 drv/bus/usb/uhci \ 107 drv/bus/usb/uhcirh \ 108 drv/bus/usb/usbflbk \ 109 drv/bus/usb/usbhid \ 110 drv/bus/usb/usbhub \ 111 drv/bus/usb/usbmast \ 112 drv/bus/usb/usbmid \ 113 drv/bus/usb/usbmouse \ 114 drv/bus/usb/vhc 89 drv/root \ 90 drv/rootvirt \ 91 drv/test1 \ 92 drv/test2 115 93 116 94 ## Networking … … 124 102 # 125 103 104 ifneq ($(UARCH),abs32le) 105 DIRS += srv/hid/console 106 endif 107 126 108 ifeq ($(UARCH),amd64) 127 109 DIRS += \ 128 drv/ infrastructure/rootpc \129 drv/ bus/pci/pciintel \130 drv/ bus/isa \131 drv/ char/ns8250 \110 drv/rootpc \ 111 drv/pciintel \ 112 drv/isa \ 113 drv/ns8250 \ 132 114 srv/hw/irc/apic \ 133 115 srv/hw/irc/i8259 … … 136 118 ifeq ($(UARCH),ia32) 137 119 DIRS += \ 138 drv/ infrastructure/rootpc \139 drv/ bus/pci/pciintel \140 drv/ bus/isa \141 drv/ char/ns8250 \120 drv/rootpc \ 121 drv/pciintel \ 122 drv/isa \ 123 drv/ns8250 \ 142 124 srv/hw/irc/apic \ 143 125 srv/hw/irc/i8259 … … 145 127 146 128 ifeq ($(UARCH),ppc32) 147 DIRS += \ 148 drv/infrastructure/rootmac \ 149 srv/hw/bus/cuda_adb 129 DIRS += srv/hw/bus/cuda_adb 150 130 endif 151 131 152 132 ifeq ($(UARCH),sparc64) 153 133 DIRS += \ 134 srv/hw/irc/fhc \ 154 135 srv/hw/irc/obio 155 136 endif … … 163 144 lib/block \ 164 145 lib/clui \ 165 lib/scsi \166 146 lib/softint \ 167 147 lib/softfloat \ 168 148 lib/drv \ 169 149 lib/packet \ 170 lib/imgmap \ 171 lib/net \ 172 lib/ext2 \ 173 lib/usb \ 174 lib/usbhost \ 175 lib/usbdev \ 176 lib/usbhid \ 177 lib/usbvirt 150 lib/net 178 151 179 152 LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note:
See TracChangeset
for help on using the changeset viewer.