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