Skip to content

Commit

Permalink
- renaming the static output library from .ar to .a
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjammet committed Nov 12, 2018
1 parent 9decde2 commit 4e81665
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Expand Up @@ -15,6 +15,7 @@ ifeq ($(PKGCONFIGPATH), )
PKGCONFIGPATH=$(LIBDIR)/pkgconfig
endif

# pkgconfig description variables
CRYPTO_REQ=libssl,libcrypto
PUBLIC_LIBS=
PRIVATE_LIBS=
Expand All @@ -40,7 +41,7 @@ ifeq ($(OS),Darwin)
SHARED=-dynamiclib -install_name ./../LibRTMFP/$(LIB)
else
LIBNAME=librtmfp.so
AR=lib/librtmfp.ar
AR=lib/librtmfp.a
SHARED=-shared
endif
LIB=lib/$(LIBNAME)
Expand Down Expand Up @@ -99,4 +100,5 @@ $(OBJECTD): tmp/Debug/%.o: sources/%.cpp
clean:
@echo cleaning project librtmfp
@rm -f $(OBJECT) $(LIB)
@rm -f $(OBJECTD) $(LIB)
@rm -f $(OBJECTD) $(LIB)

0 comments on commit 4e81665

Please sign in to comment.