-
-
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
25 additions
and
8 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
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,7 +1,7 @@ | ||
#!/usr/bin/make -f | ||
# | ||
# 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 | ||
# | ||
|
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
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 | ||
# | ||
|
@@ -42,7 +42,11 @@ SHAREDDIR := $(PREFIX)/share | |
INCDIR := $(PREFIX)/include | ||
BUILDDIR := $(BASEDIR)/.build | ||
TARGET_BUILDDIR := $(BUILDDIR)/target | ||
HOST_BUILDDIR := $(BUILDDIR)/host | ||
ifeq ($(CROSS_COMPILE),1) | ||
HOST_BUILDDIR := $(BUILDDIR)/host | ||
else | ||
HOST_BUILDDIR := $(TARGET_BUILDDIR) | ||
endif | ||
MODULES := $(BASEDIR)/modules | ||
CONFIG := $(BASEDIR)/.config.mk | ||
|
||
|
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-plugins | ||
# | ||
|
@@ -180,6 +180,7 @@ COMMON_VARS = \ | |
ARCHITECTURE \ | ||
ARCHITECTURE_FAMILY \ | ||
ARCHITECTURE_CFLAGS \ | ||
CROSS_COMPILE \ | ||
DEBUG \ | ||
EXECUTABLE_EXT \ | ||
EXPORT_SYMBOLS \ | ||
|
@@ -205,6 +206,7 @@ sysvars: | |
echo " ARCHITECTURE_CFLAGS compiler flags to specify architecture" | ||
echo " ARCHITECTURE_FAMILY compiler flags to specify architecture family" | ||
echo " ARCHITECTURE_LDFLAGS linker flags to specify architecture" | ||
echo " CROSS_COMPILE enable/disable cross-compilation" | ||
echo " DEBUG build with debug options" | ||
echo " DEVEL build with modules checked out for read/write URL" | ||
echo " EXECUTABLE_EXT file extension for executable files" | ||
|