diff --git a/Makefile b/Makefile index c3df396e..c2f5dbc8 100644 --- a/Makefile +++ b/Makefile @@ -129,6 +129,14 @@ include codec/processing/targets.mk include codec/console/dec/targets.mk include codec/console/enc/targets.mk +libraries: $(LIBPREFIX)wels.$(LIBSUFFIX) +LIBRARIES += $(LIBPREFIX)wels.$(LIBSUFFIX) + +$(LIBPREFIX)wels.$(LIBSUFFIX): $(ENCODER_OBJS) $(DECODER_OBJS) $(PROCESSING_OBJS) $(COMMON_OBJS) + rm -f $@ + $(AR) $(AR_OPTS) $+ + + ifeq ($(HAVE_GTEST),Yes) include build/gtest-targets.mk include test/targets.mk