Changes in uspace/Makefile [a79d88d:b8100da] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
ra79d88d rb8100da 46 46 app/tasks \ 47 47 app/tester \ 48 app/test_serial \49 48 app/tetris \ 50 49 app/trace \ 51 50 app/top \ 52 app/netecho \ 53 app/nettest1 \ 54 app/nettest2 \ 55 app/ping \ 51 app/virtusbkbd \ 56 52 srv/clip \ 57 53 srv/devmap \ 58 srv/devman \59 54 srv/loader \ 60 55 srv/ns \ … … 72 67 srv/hid/adb_mouse \ 73 68 srv/hid/char_mouse \ 74 srv/hid/s3c24xx_ts \75 69 srv/hid/fb \ 76 70 srv/hid/kbd \ … … 78 72 srv/hw/char/s3c24xx_uart \ 79 73 srv/hw/netif/dp8390 \ 74 srv/hw/bus/usb/hcd/virtual \ 80 75 srv/net/cfg \ 81 76 srv/net/netif/lo \ … … 87 82 srv/net/net \ 88 83 srv/net/netstart \ 89 drv/root 84 app/usb \ 85 app/netecho \ 86 app/nettest1 \ 87 app/nettest2 \ 88 app/ping 90 89 91 90 ## Networking … … 110 109 111 110 ifeq ($(UARCH),amd64) 111 DIRS += srv/hw/bus/pci 112 112 endif 113 113 114 114 ifeq ($(UARCH),ia32) 115 DIRS += drv/rootia32 116 DIRS += drv/pciintel 117 DIRS += drv/isa 118 DIRS += drv/ns8250 115 DIRS += srv/hw/bus/pci 119 116 endif 120 117 … … 139 136 lib/softint \ 140 137 lib/softfloat \ 141 lib/drv \ 142 lib/packet \ 138 lib/socket \ 143 139 lib/net 140 141 ifeq ($(UARCH),amd64) 142 LIBS += lib/pci 143 LIBS += lib/usb 144 LIBS += lib/usbvirt 145 endif 146 147 ifeq ($(UARCH),ia32) 148 LIBS += lib/pci 149 LIBS += lib/usb 150 LIBS += lib/usbvirt 151 endif 152 144 153 145 154 LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note:
See TracChangeset
for help on using the changeset viewer.