Skip to content

Commit 5d9024e

Browse files
committed
Release 0.5.14
* Updated build system.
2 parents 01c8d6e + e0a7a37 commit 5d9024e

File tree

10 files changed

+197
-182
lines changed

10 files changed

+197
-182
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
* RECENT CHANGES
33
*******************************************************************************
44

5+
=== 0.5.14 ===
6+
* Updated build system.
7+
58
=== 0.5.13 ===
69
* Added x86/x86_64 4-lobe oversampling functions.
710
* Added ARMv7 NEON-optimized 4-lobe oversampling functions.

Makefile

Lines changed: 54 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@
1919
# along with lsp-dsp-lib. If not, see <https://www.gnu.org/licenses/>.
2020
#
2121

22+
# Command-line flag to silence nested $(MAKE).
23+
ifneq ($(VERBOSE),1)
24+
.SILENT:
25+
endif
26+
2227
# Location
2328
BASEDIR := $(CURDIR)
2429
MODULES := $(BASEDIR)/modules
@@ -44,76 +49,76 @@ DISTSRC = $(DISTSRC_PATH)/$(ARTIFACT_NAME)
4449
.PHONY: all compile install uninstall depend clean
4550

4651
compile all install uninstall depend:
47-
@$(CHK_CONFIG)
48-
@$(MAKE) -s -C "$(BASEDIR)/src" $(@) CONFIG="$(CONFIG)" DESTDIR="$(DESTDIR)"
52+
$(CHK_CONFIG)
53+
$(MAKE) -C "$(BASEDIR)/src" $(@) VERBOSE="$(VERBOSE)" CONFIG="$(CONFIG)" DESTDIR="$(DESTDIR)"
4954

5055
clean:
51-
@echo "Cleaning build directory $(BUILDDIR)"
52-
@-rm -rf $(BUILDDIR)
53-
@echo "Clean OK"
56+
echo "Cleaning build directory $(BUILDDIR)"
57+
-rm -rf $(BUILDDIR)
58+
echo "Clean OK"
5459

5560
# Module-related tasks
5661
.PHONY: fetch tree prune
5762
fetch:
58-
@$(CHK_CONFIG)
59-
@echo "Fetching desired source code dependencies"
60-
@$(MAKE) -s -f "$(BASEDIR)/make/modules.mk" $(@) BASEDIR="$(BASEDIR)" CONFIG="$(CONFIG)"
61-
@echo "Fetch OK"
63+
$(CHK_CONFIG)
64+
echo "Fetching desired source code dependencies"
65+
$(MAKE) -f "$(BASEDIR)/make/modules.mk" $(@) VERBOSE="$(VERBOSE)" BASEDIR="$(BASEDIR)" CONFIG="$(CONFIG)"
66+
echo "Fetch OK"
6267

6368
tree:
64-
@echo "Fetching all possible source code dependencies"
65-
@$(MAKE) -s -f "$(BASEDIR)/make/modules.mk" $(@) BASEDIR="$(BASEDIR)" TREE="1"
66-
@echo "Fetch OK"
69+
echo "Fetching all possible source code dependencies"
70+
$(MAKE) -f "$(BASEDIR)/make/modules.mk" $(@) VERBOSE="$(VERBOSE)" BASEDIR="$(BASEDIR)" TREE="1"
71+
echo "Fetch OK"
6772

6873
prune: clean
69-
@echo "Pruning the whole project tree"
70-
@$(MAKE) -s -f "$(BASEDIR)/make/modules.mk" prune BASEDIR="$(BASEDIR)" CONFIG="$(CONFIG)"
71-
@$(MAKE) -s -f "$(BASEDIR)/make/modules.mk" prune BASEDIR="$(BASEDIR)" TREE="1"
72-
@-rm -rf "$(CONFIG)"
73-
@echo "Prune OK"
74+
echo "Pruning the whole project tree"
75+
$(MAKE) -f "$(BASEDIR)/make/modules.mk" prune VERBOSE="$(VERBOSE)" BASEDIR="$(BASEDIR)" CONFIG="$(CONFIG)"
76+
$(MAKE) -f "$(BASEDIR)/make/modules.mk" prune VERBOSE="$(VERBOSE)" BASEDIR="$(BASEDIR)" TREE="1"
77+
-rm -rf "$(CONFIG)"
78+
echo "Prune OK"
7479

7580
# Configuration-related targets
7681
.PHONY: config help chkconfig
7782

7883
testconfig:
79-
@$(MAKE) -s -f "$(BASEDIR)/make/configure.mk" $(@) CONFIG="$(CONFIG)" TEST="1" $(MAKEFLAGS)
84+
$(MAKE) -f "$(BASEDIR)/make/configure.mk" $(@) VERBOSE="$(VERBOSE)" CONFIG="$(CONFIG)" TEST="1" -$(MAKEFLAGS)
8085

8186
config:
82-
@$(MAKE) -s -f "$(BASEDIR)/make/configure.mk" $(@) CONFIG="$(CONFIG)" $(MAKEFLAGS)
87+
$(MAKE) -f "$(BASEDIR)/make/configure.mk" $(@) VERBOSE="$(VERBOSE)" CONFIG="$(CONFIG)" -$(MAKEFLAGS)
8388

8489
# Release-related targets
8590
.PHONY: distsrc
8691
distsrc:
87-
@echo "Building source code archive"
88-
@mkdir -p "$(DISTSRC)/modules"
89-
@$(MAKE) -s -f "$(BASEDIR)/make/modules.mk" tree BASEDIR="$(BASEDIR)" MODULES="$(DISTSRC)/modules" TREE="1"
90-
@cp -R $(BASEDIR)/include $(BASEDIR)/make $(BASEDIR)/src "$(DISTSRC)/"
91-
@cp $(BASEDIR)/CHANGELOG $(BASEDIR)/COPYING* $(BASEDIR)/Makefile $(BASEDIR)/*.mk "$(DISTSRC)/"
92-
@find "$(DISTSRC)" -iname '.git' | xargs -exec rm -rf {}
93-
@find "$(DISTSRC)" -iname '.gitignore' | xargs -exec rm -rf {}
94-
@tar -C $(DISTSRC_PATH) -czf "$(BUILDDIR)/$(ARTIFACT_NAME)-$(ARTIFACT_VERSION)-src.tar.gz" "$(ARTIFACT_NAME)"
95-
@echo "Created archive: $(BUILDDIR)/$(ARTIFACT_NAME)-$(ARTIFACT_VERSION)-src.tar.gz"
96-
@ln -sf "$(ARTIFACT_NAME)-$(ARTIFACT_VERSION)-src.tar.gz" "$(BUILDDIR)/$(ARTIFACT_NAME)-src.tar.gz"
97-
@echo "Created symlink: $(BUILDDIR)/$(ARTIFACT_NAME)-src.tar.gz"
98-
@rm -rf $(DISTSRC_PATH)
99-
@echo "Build OK"
92+
echo "Building source code archive"
93+
mkdir -p "$(DISTSRC)/modules"
94+
$(MAKE) -f "$(BASEDIR)/make/modules.mk" tree VERBOSE="$(VERBOSE)" BASEDIR="$(BASEDIR)" MODULES="$(DISTSRC)/modules" TREE="1"
95+
cp -R $(BASEDIR)/include $(BASEDIR)/make $(BASEDIR)/src "$(DISTSRC)/"
96+
cp $(BASEDIR)/CHANGELOG $(BASEDIR)/COPYING* $(BASEDIR)/Makefile $(BASEDIR)/*.mk "$(DISTSRC)/"
97+
find "$(DISTSRC)" -iname '.git' | xargs -exec rm -rf {}
98+
find "$(DISTSRC)" -iname '.gitignore' | xargs -exec rm -rf {}
99+
tar -C $(DISTSRC_PATH) -czf "$(BUILDDIR)/$(ARTIFACT_NAME)-$(ARTIFACT_VERSION)-src.tar.gz" "$(ARTIFACT_NAME)"
100+
echo "Created archive: $(BUILDDIR)/$(ARTIFACT_NAME)-$(ARTIFACT_VERSION)-src.tar.gz"
101+
ln -sf "$(ARTIFACT_NAME)-$(ARTIFACT_VERSION)-src.tar.gz" "$(BUILDDIR)/$(ARTIFACT_NAME)-src.tar.gz"
102+
echo "Created symlink: $(BUILDDIR)/$(ARTIFACT_NAME)-src.tar.gz"
103+
rm -rf $(DISTSRC_PATH)
104+
echo "Build OK"
100105

101106
# Help
102107
help:
103-
@echo "Available targets:"
104-
@echo " all Build all binaries"
105-
@echo " clean Clean all build files and configuration file"
106-
@echo " config Configure build"
107-
@echo " depend Update build dependencies for current project"
108-
@echo " distsrc Make tarball with source code for packagers"
109-
@echo " fetch Fetch all desired source code dependencies from git"
110-
@echo " help Print this help message"
111-
@echo " info Output build configuration"
112-
@echo " install Install all binaries into the system"
113-
@echo " prune Cleanup build and all fetched dependencies from git"
114-
@echo " tree Fetch all possible source code dependencies from git"
115-
@echo " to make source code portable between machines"
116-
@echo " uninstall Uninstall binaries"
117-
@echo ""
118-
@$(MAKE) -s -f "$(BASEDIR)/make/configure.mk" $(@)
119-
@echo ""
108+
echo "Available targets:"
109+
echo " all Build all binaries"
110+
echo " clean Clean all build files and configuration file"
111+
echo " config Configure build"
112+
echo " depend Update build dependencies for current project"
113+
echo " distsrc Make tarball with source code for packagers"
114+
echo " fetch Fetch all desired source code dependencies from git"
115+
echo " help Print this help message"
116+
echo " info Output build configuration"
117+
echo " install Install all binaries into the system"
118+
echo " prune Cleanup build and all fetched dependencies from git"
119+
echo " tree Fetch all possible source code dependencies from git"
120+
echo " to make source code portable between machines"
121+
echo " uninstall Uninstall binaries"
122+
echo ""
123+
$(MAKE) -f "$(BASEDIR)/make/configure.mk" $(@) VERBOSE="$(VERBOSE)"
124+
echo ""

dependencies.mk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
#
2020

2121
# Variables that describe dependencies
22-
LSP_COMMON_LIB_VERSION := 1.0.12
22+
LSP_COMMON_LIB_VERSION := 1.0.14
2323
LSP_COMMON_LIB_NAME := lsp-common-lib
2424
LSP_COMMON_LIB_TYPE := src
25-
LSP_COMMON_LIB_URL := https://github.com/sadko4u/$(LSP_COMMON_LIB_NAME).git
25+
LSP_COMMON_LIB_URL := git@github.com:lsp-plugins/$(LSP_COMMON_LIB_NAME).git
2626

27-
LSP_TEST_FW_VERSION := 1.0.7
27+
LSP_TEST_FW_VERSION := 1.0.8
2828
LSP_TEST_FW_NAME := lsp-test-fw
2929
LSP_TEST_FW_TYPE := src
30-
LSP_TEST_FW_URL := https://github.com/sadko4u/$(LSP_TEST_FW_NAME).git
30+
LSP_TEST_FW_URL := git@github.com:lsp-plugins/$(LSP_TEST_FW_NAME).git
3131

3232
LIBPTHREAD_VERSION := system
3333
LIBPTHREAD_NAME := libpthread

include/lsp-plug.in/dsp/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
// Define version of headers
2626
#define LSP_DSP_LIB_MAJOR 0
2727
#define LSP_DSP_LIB_MINOR 5
28-
#define LSP_DSP_LIB_MICRO 13
28+
#define LSP_DSP_LIB_MICRO 14
2929

3030
#ifdef LSP_DSP_LIB_BUILTIN
3131
#define LSP_DSP_LIB_CPPEXPORT

make/configure.mk

Lines changed: 34 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
# You should have received a copy of the GNU Lesser General Public License
1818
# along with lsp-dsp-lib. If not, see <https://www.gnu.org/licenses/>.
1919
#
20+
ifneq ($(VERBOSE),1)
21+
.SILENT:
22+
endif
2023

2124
# Definitions
2225
PREFIX := /usr/local
@@ -51,10 +54,8 @@ ifeq ($(findstring -devel,$(ARTIFACT_VERSION)),-devel)
5154
tmp_version :=$(shell echo "$(ARTIFACT_VERSION)" | sed s/-devel//g)
5255
ARTIFACT_VERSION=$(tmp_version)
5356
else
54-
$(foreach dep, $(DEPENDENCIES), \
55-
$(eval \
56-
$(dep)_BRANCH="$($(dep)_VERSION)" \
57-
) \
57+
$(foreach dep,$(DEPENDENCIES),\
58+
$(eval $(dep)_BRANCH="$($(dep)_VERSION)") \
5859
)
5960
endif
6061

@@ -168,39 +169,39 @@ CONFIG_VARS = \
168169
.PHONY: $(CONFIG_VARS)
169170

170171
prepare:
171-
@echo "Configuring build..."
172-
@echo "# Project settings" > "$(CONFIG)"
172+
echo "Configuring build..."
173+
echo "# Project settings" > "$(CONFIG)"
173174

174175
$(CONFIG_VARS): prepare
175-
@echo "$(@)=$($(@))" >> "$(CONFIG)"
176+
echo "$(@)=$($(@))" >> "$(CONFIG)"
176177

177178
config: $(CONFIG_VARS)
178-
@echo "Configured OK"
179+
echo "Configured OK"
179180

180181
help: | toolvars sysvars
181-
@echo ""
182-
@echo "List of variables for each dependency:"
183-
@echo " <ARTIFACT>_BIN location to put all binaries when building artifact"
184-
@echo " <ARTIFACT>_BRANCH git branch used to checkout source code"
185-
@echo " <ARTIFACT>_CFLAGS C/C++ flags to access headers of the artifact"
186-
@echo " <ARTIFACT>_DESC Full description of the artifact"
187-
@echo " <ARTIFACT>_INC path to include files of the artifact"
188-
@echo " <ARTIFACT>_LDFLAGS linker flags to link with artifact"
189-
@echo " <ARTIFACT>_MFLAGS artifact-specific compilation flags"
190-
@echo " <ARTIFACT>_NAME the artifact name used in pathnames"
191-
@echo " <ARTIFACT>_OBJ path to output object file for artifact"
192-
@echo " <ARTIFACT>_PATH location of the source code of the artifact"
193-
@echo " <ARTIFACT>_SRC path to source code files of the artifact"
194-
@echo " <ARTIFACT>_TEST location of test files of the artifact"
195-
@echo " <ARTIFACT>_TYPE artifact usage type"
196-
@echo " - src - use sources and headers from git"
197-
@echo " - hdr - use headers only from git"
198-
@echo " - pkg - use pkgconfig for configuration"
199-
@echo " - lib - use system headers and -l<libname> flags"
200-
@echo " - opt - use optional configuration"
201-
@echo " <ARTIFACT>_URL location of the artifact git repoisitory"
202-
@echo " <ARTIFACT>_VERSION version of the artifact used for building"
203-
@echo ""
204-
@echo "Artifacts used for build:"
205-
@echo " $(DEPENDENCIES)"
182+
echo ""
183+
echo "List of variables for each dependency:"
184+
echo " <ARTIFACT>_BIN location to put all binaries when building artifact"
185+
echo " <ARTIFACT>_BRANCH git branch used to checkout source code"
186+
echo " <ARTIFACT>_CFLAGS C/C++ flags to access headers of the artifact"
187+
echo " <ARTIFACT>_DESC Full description of the artifact"
188+
echo " <ARTIFACT>_INC path to include files of the artifact"
189+
echo " <ARTIFACT>_LDFLAGS linker flags to link with artifact"
190+
echo " <ARTIFACT>_MFLAGS artifact-specific compilation flags"
191+
echo " <ARTIFACT>_NAME the artifact name used in pathnames"
192+
echo " <ARTIFACT>_OBJ path to output object file for artifact"
193+
echo " <ARTIFACT>_PATH location of the source code of the artifact"
194+
echo " <ARTIFACT>_SRC path to source code files of the artifact"
195+
echo " <ARTIFACT>_TEST location of test files of the artifact"
196+
echo " <ARTIFACT>_TYPE artifact usage type"
197+
echo " - src - use sources and headers from git"
198+
echo " - hdr - use headers only from git"
199+
echo " - pkg - use pkgconfig for configuration"
200+
echo " - lib - use system headers and -l<libname> flags"
201+
echo " - opt - use optional configuration"
202+
echo " <ARTIFACT>_URL location of the artifact git repoisitory"
203+
echo " <ARTIFACT>_VERSION version of the artifact used for building"
204+
echo ""
205+
echo "Artifacts used for build:"
206+
echo " $(DEPENDENCIES)"
206207

make/modules.mk

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
# You should have received a copy of the GNU Lesser General Public License
1818
# along with lsp-dsp-lib. If not, see <https://www.gnu.org/licenses/>.
1919
#
20+
ifneq ($(VERBOSE),1)
21+
.SILENT:
22+
endif
2023

2124
BASEDIR := $(CURDIR)
2225
DEPLIST := $(BASEDIR)/dependencies.mk
@@ -64,27 +67,27 @@ ALL_PATHS = $(foreach dep, $(ALL_SRC_MODULES) $(ALL_HDR_MODULES), $($(
6467
.PHONY: fetch prune clean
6568

6669
$(ALL_SRC_MODULES) $(ALL_HDR_MODULES):
67-
@echo "Cloning $($(@)_URL) -> $($(@)_PATH) [$($(@)_BRANCH)]"
68-
@test -f "$($(@)_PATH)/.git/config" || $(GIT) clone "$($(@)_URL)" "$($(@)_PATH)"
69-
@$(GIT) -C "$($(@)_PATH)" reset --hard
70-
@$(GIT) -C "$($(@)_PATH)" fetch origin --force
71-
@$(GIT) -C "$($(@)_PATH)" fetch origin '+refs/heads/*:refs/tags/*' --force
72-
@$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout origin/$($(@)_BRANCH) || \
73-
$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout refs/tags/$($(@)_BRANCH) || \
74-
$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout origin/$($(@)_NAME)-$($(@)_BRANCH) || \
75-
$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout refs/tags/$($(@)_NAME)-$($(@)_BRANCH)
70+
echo "Cloning $($(@)_URL) -> $($(@)_PATH) [$($(@)_BRANCH)]"
71+
test -f "$($(@)_PATH)/.git/config" || $(GIT) clone "$($(@)_URL)" "$($(@)_PATH)"
72+
$(GIT) -C "$($(@)_PATH)" reset --hard
73+
$(GIT) -C "$($(@)_PATH)" fetch origin --force
74+
$(GIT) -C "$($(@)_PATH)" fetch origin '+refs/heads/*:refs/tags/*' --force
75+
$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout -B "$($(@)_BRANCH)" "origin/$($(@)_BRANCH)" || \
76+
$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout "refs/tags/$($(@)_BRANCH)" || \
77+
$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout -B "$($(@)_NAME)-$($(@)_BRANCH)" "origin/$($(@)_NAME)-$($(@)_BRANCH)" || \
78+
$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout "refs/tags/$($(@)_NAME)-$($(@)_BRANCH)"
7679

7780
$(ALL_PATHS):
78-
@echo "Removing $(notdir $(@))"
79-
@-rm -rf $(@)
81+
echo "Removing $(notdir $(@))"
82+
-rm -rf $(@)
8083

8184
fetch: $(SRC_MODULES) $(HDR_MODULES)
8285

8386
tree: $(ALL_SRC_MODULES) $(ALL_HDR_MODULES)
8487

8588
clean:
86-
@echo rm -rf "$($(ARTIFACT_VARS)_BIN)/$(ARTIFACT_NAME)"
87-
@-rm -rf "$($(ARTIFACT_VARS)_BIN)/$(ARTIFACT_NAME)"
89+
echo rm -rf "$($(ARTIFACT_VARS)_BIN)/$(ARTIFACT_NAME)"
90+
-rm -rf "$($(ARTIFACT_VARS)_BIN)/$(ARTIFACT_NAME)"
8891

8992
prune: $(ALL_PATHS)
9093

make/system.mk

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -228,22 +228,22 @@ COMMON_VARS = \
228228
.PHONY: sysvars
229229

230230
sysvars:
231-
@echo "List of available system variables:"
232-
@echo " ARCHITECTURE target architecture to perform build"
233-
@echo " ARCHITECTURE_CFLAGS compiler flags to specify architecture"
234-
@echo " BINDIR location of the binaries"
235-
@echo " DEBUG build with debug options"
236-
@echo " EXECUTABLE_EXT file extension for executable files"
237-
@echo " INCDIR location of the header files"
238-
@echo " LIBDIR location of the library"
239-
@echo " LIBRARY_EXT file extension for library files"
240-
@echo " LIBRARY_PREFIX prefix used for library file"
241-
@echo " PKGCONFIG_EXT file extension for pkgconfig files"
242-
@echo " PLATFORM target software platform to perform build"
243-
@echo " PREFIX installation prefix for binary files"
244-
@echo " PROFILE build with profile options"
245-
@echo " STATICLIB_EXT file extension for static library files"
246-
@echo " TEMPDIR location of temporary directory"
247-
@echo " TEST use test build"
248-
@echo " TRACE compile with additional trace information output"
231+
echo "List of available system variables:"
232+
echo " ARCHITECTURE target architecture to perform build"
233+
echo " ARCHITECTURE_CFLAGS compiler flags to specify architecture"
234+
echo " BINDIR location of the binaries"
235+
echo " DEBUG build with debug options"
236+
echo " EXECUTABLE_EXT file extension for executable files"
237+
echo " INCDIR location of the header files"
238+
echo " LIBDIR location of the library"
239+
echo " LIBRARY_EXT file extension for library files"
240+
echo " LIBRARY_PREFIX prefix used for library file"
241+
echo " PKGCONFIG_EXT file extension for pkgconfig files"
242+
echo " PLATFORM target software platform to perform build"
243+
echo " PREFIX installation prefix for binary files"
244+
echo " PROFILE build with profile options"
245+
echo " STATICLIB_EXT file extension for static library files"
246+
echo " TEMPDIR location of temporary directory"
247+
echo " TEST use test build"
248+
echo " TRACE compile with additional trace information output"
249249

make/tools.mk

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -118,18 +118,18 @@ TOOL_VARS := \
118118

119119
.PHONY: toolvars
120120
toolvars:
121-
@echo "List of tool variables:"
122-
@echo " AR Archiver tool"
123-
@echo " AS Assembler tool"
124-
@echo " CC C compiler execution command line"
125-
@echo " CFLAGS C compiler build flags"
126-
@echo " CXX C++ compiler execution command line"
127-
@echo " CXXFLAGS C++ compiler build flags"
128-
@echo " EXE_FLAGS Flags to link executable files"
129-
@echo " GIT The name of the Git version control tool"
130-
@echo " INCLUDE Additional paths for include files"
131-
@echo " LD Linker execution command line"
132-
@echo " LDFLAGS Linker flags for merging object files"
133-
@echo " SO_FLAGS Flags to link shared object/library files"
134-
@echo ""
121+
echo "List of tool variables:"
122+
echo " AR Archiver tool"
123+
echo " AS Assembler tool"
124+
echo " CC C compiler execution command line"
125+
echo " CFLAGS C compiler build flags"
126+
echo " CXX C++ compiler execution command line"
127+
echo " CXXFLAGS C++ compiler build flags"
128+
echo " EXE_FLAGS Flags to link executable files"
129+
echo " GIT The name of the Git version control tool"
130+
echo " INCLUDE Additional paths for include files"
131+
echo " LD Linker execution command line"
132+
echo " LDFLAGS Linker flags for merging object files"
133+
echo " SO_FLAGS Flags to link shared object/library files"
134+
echo ""
135135

0 commit comments

Comments
 (0)