Changes in uspace/Makefile [caa8a94:c245f16e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
rcaa8a94 rc245f16e 38 38 app/getterm \ 39 39 app/init \ 40 app/kill \41 app/killall \42 40 app/klog \ 43 41 app/mkfat \ … … 46 44 app/stats \ 47 45 app/taskdump \ 46 app/tasks \ 48 47 app/tester \ 49 48 app/tetris \ … … 54 53 app/nettest2 \ 55 54 app/ping \ 56 app/websrv \57 app/sysinfo \58 55 srv/clip \ 59 56 srv/devmap \ … … 79 76 srv/hw/char/i8042 \ 80 77 srv/hw/char/s3c24xx_uart \ 81 srv/hw/netif/ne2000 \ 78 srv/hw/netif/dp8390 \ 79 srv/net/cfg \ 82 80 srv/net/netif/lo \ 83 81 srv/net/il/arp \ … … 95 93 # 96 94 97 DIRS += \ 98 srv/net/nil/eth \ 99 srv/net/nil/nildummy 95 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y) 96 LIBN = \ 97 srv/net/nil/eth \ 98 srv/net/nil/nildummy 99 else 100 DIRS += \ 101 srv/net/nil/eth \ 102 srv/net/nil/nildummy 103 endif 100 104 101 105 ## Platform-specific hardware support … … 107 111 108 112 ifeq ($(UARCH),amd64) 109 DIRS += \ 110 drv/rootpc \ 111 drv/pciintel \ 112 drv/isa \ 113 drv/ns8250 \ 114 srv/hw/irc/apic \ 115 srv/hw/irc/i8259 113 DIRS += drv/rootpc 114 DIRS += drv/pciintel 115 DIRS += drv/isa 116 DIRS += drv/ns8250 116 117 endif 117 118 118 119 ifeq ($(UARCH),ia32) 119 DIRS += \ 120 drv/rootpc \ 121 drv/pciintel \ 122 drv/isa \ 123 drv/ns8250 \ 124 srv/hw/irc/apic \ 125 srv/hw/irc/i8259 120 DIRS += drv/rootpc 121 DIRS += drv/pciintel 122 DIRS += drv/isa 123 DIRS += drv/ns8250 126 124 endif 127 125 … … 132 130 ifeq ($(UARCH),sparc64) 133 131 DIRS += \ 134 srv/hw/ irc/fhc \135 srv/hw/ irc/obio132 srv/hw/cir/fhc \ 133 srv/hw/cir/obio 136 134 endif 137 135
Note:
See TracChangeset
for help on using the changeset viewer.