diff options
author | midipix <writeonce@midipix.org> | 2017-10-19 12:40:11 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-10-19 18:47:32 -0400 |
commit | 3174198f969a366401156c34445a810616c98871 (patch) | |
tree | 421ac4e61bf742ce75de173adca1c8a33f85b0f7 /sofort | |
parent | 39751ab8433546a7cf34791ebfcc9c0b8af459e9 (diff) | |
download | ptycon-3174198f969a366401156c34445a810616c98871.tar.bz2 ptycon-3174198f969a366401156c34445a810616c98871.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) |