summaryrefslogtreecommitdiffhomepage
path: root/sofort/exrules/pe-dlltool.mk
blob: 6694ed5d88d209b68f092a01cd5003c6e173fa8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
include $(PROJECT_DIR)/sofort/exrules/pe-common.mk

$(IMPLIB_VER):		$(IMPLIB_DEF)
			$(DLLTOOL) -l $(IMPLIB_VER) -d $(IMPLIB_DEF) -D $(DSO_VER)

ifeq ($(AVOID_VERSION),yes)

else

$(IMPLIB_SONAME):	$(IMPLIB_DEF)
			$(DLLTOOL) -l $(IMPLIB_SONAME) -d $(IMPLIB_DEF) -D $(DSO_SONAME)

endif

include $(PROJECT_DIR)/sofort/exrules/pe-version.mk