Make DLEXT var configurable in programs and tests makefiles

This commit is contained in:
Andres Amaya Garcia 2018-03-27 19:17:21 +01:00
parent d1b1788b40
commit 420f0ccdfd
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ ifdef SHARED
SHARED_SUFFIX=.$(DLEXT) SHARED_SUFFIX=.$(DLEXT)
endif endif
else else
DLEXT=so DLEXT ?= so
EXEXT= EXEXT=
SHARED_SUFFIX= SHARED_SUFFIX=
endif endif

View File

@ -35,7 +35,7 @@ ifdef SHARED
SHARED_SUFFIX=.$(DLEXT) SHARED_SUFFIX=.$(DLEXT)
endif endif
else else
DLEXT=so DLEXT ?= so
EXEXT= EXEXT=
SHARED_SUFFIX= SHARED_SUFFIX=
endif endif