Changes in uspace/Makefile [13eecc4:83b64a59] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    r13eecc4 r83b64a59  
    169169        drv/char/ns8250 \
    170170        drv/char/pc-lpt \
     171        drv/char/pl011 \
    171172        drv/char/pl050 \
    172173        drv/char/ski-con \
     
    181182        drv/hid/xtkbd \
    182183        drv/intctl/apic \
     184        drv/intctl/gicv2 \
    183185        drv/intctl/i8259 \
    184186        drv/intctl/icp-ic \
     
    191193        drv/nic/virtio-net \
    192194        drv/platform/amdm37x \
     195        drv/platform/arm64virt \
    193196        drv/platform/icp \
    194197        drv/platform/mac \
     
    220223#
    221224
    222 BASE_LIBS = \
     225DIRS += \
     226        lib/fs \
     227        lib/block \
    223228        lib/c \
    224229        lib/cpp \
    225         lib/untar
    226 
    227 LIBS = \
    228         lib/fs \
    229         lib/block \
    230230        lib/crypto \
    231231        lib/clui \
     
    250250        lib/ext4 \
    251251        lib/trackmod \
     252        lib/untar \
    252253        lib/uri \
    253254        lib/usb \
     
    263264        lib/virtio
    264265
    265 BASE_BUILDS := $(addsuffix .build,$(BASE_LIBS))
    266 BUILDS := $(addsuffix .build,$(DIRS) $(LIBS))
    267 BUILDS_TESTS := $(addsuffix .build-test,$(DIRS) $(LIBS) $(BASE_LIBS))
    268 DEPS = $(addsuffix /deps.mk,$(DIRS) $(LIBS))
    269 CLEANS := $(addsuffix .clean,$(DIRS) $(LIBS) $(BASE_LIBS))
    270 
    271 .PHONY: all $(BASE_BUILDS) $(BUILDS) $(BUILDS_TESTS) $(CLEANS) clean export
     266BUILDS := $(addsuffix .build,$(DIRS))
     267BUILDS_TESTS := $(addsuffix .build-test,$(DIRS))
     268DEPS = $(addsuffix /deps.mk,$(DIRS))
     269CLEANS := $(addsuffix .clean,$(DIRS))
     270
     271.PHONY: all $(BUILDS) $(BUILDS_TESTS) $(CLEANS) clean export
    272272
    273273all: $(BUILDS) $(BUILDS_TESTS)
    274274
    275 $(BUILDS_TESTS): $(BASE_BUILDS) $(BUILDS)
     275$(BUILDS_TESTS): $(BUILDS)
    276276        $(MAKE) -r -C $(basename $@) all-test PRECHECK=$(PRECHECK)
    277277
     
    289289        -$(MAKE) -r -C $(basename $@) fasterclean
    290290
    291 $(BASE_BUILDS) $(BUILDS):
     291$(BUILDS):
    292292        $(MAKE) -r -C $(basename $@) all PRECHECK=$(PRECHECK)
    293293
     
    295295        $(MAKE) -r -C $(@D) deps.mk SELF_TARGET="$(@D).build"
    296296
    297 $(BUILDS): $(BASE_BUILDS)
    298 
    299297-include $(DEPS)
Note: See TracChangeset for help on using the changeset viewer.