Changes in uspace/Makefile [c245f16e:07b9203e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
rc245f16e r07b9203e 49 49 app/trace \ 50 50 app/top \ 51 app/usbinfo \ 52 app/virtusbkbd \ 51 53 app/netecho \ 52 54 app/nettest1 \ … … 86 88 srv/net/net \ 87 89 drv/root \ 88 drv/rootvirt \ 89 drv/test1 \ 90 drv/test2 90 drv/vhc 91 91 92 92 ## Networking … … 111 111 112 112 ifeq ($(UARCH),amd64) 113 DIRS += drv/rootpc 113 endif 114 115 ifeq ($(UARCH),ia32) 116 DIRS += drv/rootia32 114 117 DIRS += drv/pciintel 115 118 DIRS += drv/isa 116 119 DIRS += drv/ns8250 117 endif 118 119 ifeq ($(UARCH),ia32) 120 DIRS += drv/rootpc 121 DIRS += drv/pciintel 122 DIRS += drv/isa 123 DIRS += drv/ns8250 120 DIRS += drv/uhci 121 DIRS += drv/usbhub 122 DIRS += drv/usbkbd 124 123 endif 125 124 … … 147 146 lib/packet \ 148 147 lib/net 148 149 ifeq ($(UARCH),amd64) 150 LIBS += lib/usb 151 LIBS += lib/usbvirt 152 endif 153 154 ifeq ($(UARCH),ia32) 155 LIBS += lib/usb 156 LIBS += lib/usbvirt 157 endif 149 158 150 159 LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note:
See TracChangeset
for help on using the changeset viewer.