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