Blame sofort/exrules/pe-dlltool.mk

51bc52
# pe-dlltool.mk: PE shared library rules for targets using dlltool.
51bc52
# this file is covered by COPYING.SOFORT.
51bc52
3ae283
include $(PROJECT_DIR)/sofort/exrules/pe-common.mk
3ae283
3ae283
$(IMPLIB_VER):		$(IMPLIB_DEF)
3ae283
			$(DLLTOOL) -l $(IMPLIB_VER) -d $(IMPLIB_DEF) -D $(DSO_VER)
3ae283
3ae283
ifeq ($(AVOID_VERSION),yes)
3ae283
3ae283
else
3ae283
3ae283
$(IMPLIB_SONAME):	$(IMPLIB_DEF)
3ae283
			$(DLLTOOL) -l $(IMPLIB_SONAME) -d $(IMPLIB_DEF) -D $(DSO_SONAME)
3ae283
3ae283
endif
3ae283
3ae283
include $(PROJECT_DIR)/sofort/exrules/pe-version.mk