186
188
TARGET := $(patsubst %.so,%,$(patsubst %.a,%,$(TARGET)))
187
189
ifneq ($(strip $(MKSHAREDLIB) $(MKSTATICLIB)),)
188
190
TARGET := $(TARGET)$(if $(MKSHAREDLIB),.so,$(if $(MKSTATICLIB),.a))
189
192
TARGET := lib$(patsubst lib%,%,$(TARGET))
193
197
# Set up dependency generation build flags and, for those languages where the
194
198
# the compiler/assembler doesn't support dependency generation, commands to be