Changes in uspace/Makefile [04c7003f:f09d891] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r04c7003f rf09d891 27 27 # 28 28 29 ## Include configuration 29 -include ../Makefile.common 30 -include ../Makefile.config 31 32 ## Common binaries 30 33 # 31 32 -include ../Makefile.config33 34 34 35 DIRS = \ … … 40 41 app/mkfat \ 41 42 app/redir \ 42 app/shutters \ 43 app/sbi \ 44 app/stats \ 43 45 app/taskdump \ 46 app/tasks \ 44 47 app/tester \ 45 app/test_serial \46 48 app/tetris \ 47 49 app/trace \ 50 app/top \ 48 51 srv/clip \ 49 52 srv/devmap \ 50 srv/devman \51 srv/drivers/root \52 53 srv/loader \ 53 54 srv/ns \ … … 64 65 srv/fs/devfs \ 65 66 srv/hid/adb_mouse \ 66 srv/hid/console \67 67 srv/hid/char_mouse \ 68 68 srv/hid/fb \ 69 69 srv/hid/kbd \ 70 srv/hw/char/i8042 70 srv/hw/char/i8042 \ 71 srv/hw/netif/dp8390 \ 72 srv/net/cfg \ 73 srv/net/netif/lo \ 74 srv/net/il/arp \ 75 srv/net/il/ip \ 76 srv/net/tl/icmp \ 77 srv/net/tl/udp \ 78 srv/net/tl/tcp \ 79 srv/net/net \ 80 srv/net/netstart \ 81 app/netecho \ 82 app/nettest1 \ 83 app/nettest2 \ 84 app/ping 85 86 ## Networking 87 # 88 89 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y) 90 LIBN = \ 91 srv/net/nil/eth \ 92 srv/net/nil/nildummy 93 else 94 DIRS += \ 95 srv/net/nil/eth \ 96 srv/net/nil/nildummy 97 endif 98 99 ## Platform-specific hardware support 100 # 101 102 ifneq ($(UARCH),abs32le) 103 DIRS += srv/hid/console 104 endif 71 105 72 106 ifeq ($(UARCH),amd64) 73 DIRS += srv/dd 74 # DIRS += srv/hw/bus/pci 107 DIRS += srv/hw/bus/pci 75 108 endif 76 109 77 110 ifeq ($(UARCH),ia32) 78 DIRS += srv/dd 79 DIRS += srv/drivers/rootia32 80 DIRS += srv/drivers/pciintel 81 DIRS += srv/drivers/isa 82 DIRS += srv/drivers/ns8250 83 # DIRS += srv/hw/bus/pci 111 DIRS += srv/hw/bus/pci 84 112 endif 85 113 … … 90 118 ifeq ($(UARCH),sparc64) 91 119 DIRS += \ 92 srv/dd \93 120 srv/hw/cir/fhc \ 94 121 srv/hw/cir/obio 95 122 endif 96 123 97 LIBC = lib/libc 124 ## System libraries 125 # 126 127 LIBC = lib/c 98 128 LIBS = \ 99 lib/libfs \ 100 lib/libblock \ 129 lib/fs \ 130 lib/block \ 131 lib/clui \ 101 132 lib/softint \ 102 133 lib/softfloat \ 103 lib/libdrv 134 lib/socket \ 135 lib/net 104 136 105 137 ifeq ($(UARCH),amd64) 106 LIBS += lib/ libpci138 LIBS += lib/pci 107 139 endif 108 140 109 141 ifeq ($(UARCH),ia32) 110 LIBS += lib/ libpci142 LIBS += lib/pci 111 143 endif 112 144 … … 114 146 LIBC_BUILD = $(addsuffix .build,$(LIBC)) 115 147 LIBS_BUILD = $(addsuffix .build,$(LIBS)) 148 LIBN_BUILD = $(addsuffix .build,$(LIBN)) 149 BUILDS := $(addsuffix .build,$(DIRS)) 116 150 117 BUILDS := $(addsuffix .build,$(DIRS)) 118 CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC)) 151 CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBN)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC)) 119 152 120 .PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $( BUILDS) $(CLEANS) clean153 .PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(LIBN_BUILD) $(BUILDS) $(CLEANS) clean 121 154 122 155 all: $(BUILDS) … … 127 160 -$(MAKE) -C $(basename $@) clean 128 161 129 $(BUILDS): $(LIBC_BUILD) $(LIBS_BUILD) 162 $(BUILDS): $(LIBC_BUILD) $(LIBS_BUILD) $(LIBN_BUILD) 163 $(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK) 164 165 $(LIBN_BUILD): $(LIBC_BUILD) $(LIBS_BUILD) 130 166 $(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK) 131 167
Note:
See TracChangeset
for help on using the changeset viewer.