diff options
author | midipix <writeonce@midipix.org> | 2017-10-19 12:40:11 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-10-19 18:40:00 -0400 |
commit | 7e8903226c6e721f1e1e0c110547743e368caaa7 (patch) | |
tree | ee21720ba1a5a6c331ce2a7a18547c3ee38b62d0 /sofort | |
parent | 00d77f21e0e3c939969465eda49afe5a4768435f (diff) | |
download | ntcon-7e8903226c6e721f1e1e0c110547743e368caaa7.tar.bz2 ntcon-7e8903226c6e721f1e1e0c110547743e368caaa7.tar.xz |
build system: allow cmdline overriding of the static archive's base name.
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/defs.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sofort/defs.mk b/sofort/defs.mk index 5810783..2fbc41b 100644 --- a/sofort/defs.mk +++ b/sofort/defs.mk @@ -14,7 +14,8 @@ APP_OBJS = $(APP_SRCS:.c=.o) SHARED_OBJS = $(COMMON_LOBJS) $(ARCH_LOBJS) STATIC_OBJS = $(COMMON_OBJS) $(ARCH_OBJS) -STATIC_LIB = lib/$(OS_LIB_PREFIX)$(PACKAGE)$(OS_ARCHIVE_EXT) +STATIC_LIB_NAME = $(OS_LIB_PREFIX)$(PACKAGE)$(OS_ARCHIVE_EXT) +STATIC_LIB = lib/$(STATIC_LIB_NAME) DSO_VER = $(OS_LIB_PREFIX)$(PACKAGE)$(OS_LIB_SUFFIX)$(VER_XYZ) DSO_SONAME = $(OS_LIB_PREFIX)$(PACKAGE)$(OS_LIB_SUFFIX)$(VER_SONAME) |