Blame sofort/exrules/pe-dlltool.mk

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