-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
200 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# | ||
# Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/> | ||
# (C) 2020 Vladimir Sadovnikov <[email protected]> | ||
# Copyright (C) 2024 Linux Studio Plugins Project <https://lsp-plug.in/> | ||
# (C) 2024 Vladimir Sadovnikov <[email protected]> | ||
# | ||
# This file is part of lsp-common-lib | ||
# | ||
|
@@ -268,8 +268,9 @@ $(CONFIG_VARS): prepare | |
echo "$(@)=$($(@))" >> "$(CONFIG)" | ||
|
||
config: $(CONFIG_VARS) | ||
echo "Architecture: $(ARCHITECTURE_FAMILY)/$(ARCHITECTURE) ($(ARCHITECTURE_CFLAGS))" | ||
echo "Features: $(FEATURES)" | ||
echo "Host architecture: $(HOST_ARCHITECTURE_FAMILY)/$(HOST_ARCHITECTURE) ($(HOST_ARCHITECTURE_CFLAGS))" | ||
echo "Architecture: $(ARCHITECTURE_FAMILY)/$(ARCHITECTURE) ($(ARCHITECTURE_CFLAGS))" | ||
echo "Features: $(FEATURES)" | ||
echo "Configured OK" | ||
|
||
help: | pathvars toolvars sysvars | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# | ||
# Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/> | ||
# (C) 2020 Vladimir Sadovnikov <[email protected]> | ||
# Copyright (C) 2024 Linux Studio Plugins Project <https://lsp-plug.in/> | ||
# (C) 2024 Vladimir Sadovnikov <[email protected]> | ||
# | ||
# This file is part of lsp-common-lib | ||
# | ||
|
@@ -45,9 +45,15 @@ UNIQ_ALL_DEPENDENCIES := $(filter-out $(ARTIFACT_ID),$(call uniq, $(ALL_DEP | |
MODULES ?= $(BASEDIR)/modules | ||
GIT ?= git | ||
|
||
ifeq ($(DEVEL),1) | ||
X_URL_SUFFIX = _RW | ||
else | ||
X_URL_SUFFIX = _RO | ||
endif | ||
|
||
ifeq ($(TREE),1) | ||
$(foreach dep,$(UNIQ_ALL_DEPENDENCIES), \ | ||
$(eval $(dep)_URL=$($(dep)_URL_RO)) \ | ||
$(eval $(dep)_URL=$($(dep)_URL$(X_URL_SUFFIX))) \ | ||
) | ||
|
||
ifeq ($(findstring -devel,$(ARTIFACT_VERSION)),-devel) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.