Changes in uspace/Makefile [a79d88d:f63a591d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
ra79d88d rf63a591d 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 \56 51 srv/clip \ 57 52 srv/devmap \ 58 srv/devman \59 53 srv/loader \ 60 54 srv/ns \ … … 87 81 srv/net/net \ 88 82 srv/net/netstart \ 89 drv/root 83 app/netecho \ 84 app/nettest1 \ 85 app/nettest2 \ 86 app/ping 90 87 91 88 ## Networking … … 110 107 111 108 ifeq ($(UARCH),amd64) 109 DIRS += srv/hw/bus/pci 112 110 endif 113 111 114 112 ifeq ($(UARCH),ia32) 115 DIRS += drv/rootia32 116 DIRS += drv/pciintel 117 DIRS += drv/isa 118 DIRS += drv/ns8250 113 DIRS += srv/hw/bus/pci 119 114 endif 120 115 … … 139 134 lib/softint \ 140 135 lib/softfloat \ 141 lib/drv \142 136 lib/packet \ 143 137 lib/net 138 139 ifeq ($(UARCH),amd64) 140 LIBS += lib/pci 141 endif 142 143 ifeq ($(UARCH),ia32) 144 LIBS += lib/pci 145 endif 146 144 147 145 148 LIBC_BUILD = $(addsuffix .build,$(LIBC))
Note:
See TracChangeset
for help on using the changeset viewer.