diff options
author | Michael Meeks <mmeeks@openoffice.org> | 2004-08-05 16:44:50 +0000 |
---|---|---|
committer | Michael Meeks <mmeeks@openoffice.org> | 2004-08-05 16:44:50 +0000 |
commit | d3d443127b4f02a4b89758dcb29a34bf5ee80e8a (patch) | |
tree | fe8d946d4c34f18eef63bfa2404d33bb831ec375 /writerperfect/util | |
parent | 204e1614c1dad3518c1bfd2345be4742991cee5b (diff) |
Issue number: 32649
Submitted by: writerperfect team
Reviewed by: mh
Diffstat (limited to 'writerperfect/util')
-rw-r--r-- | writerperfect/util/makefile.mk | 34 | ||||
-rw-r--r-- | writerperfect/util/wpft.map | 8 |
2 files changed, 42 insertions, 0 deletions
diff --git a/writerperfect/util/makefile.mk b/writerperfect/util/makefile.mk new file mode 100644 index 000000000000..80439223b8ca --- /dev/null +++ b/writerperfect/util/makefile.mk @@ -0,0 +1,34 @@ +PRJ=.. +PRJNAME=wpft +TARGET=wpft +VERSION=$(UPD) + +.INCLUDE : settings.mk + +LIB1TARGET= $(SLB)$/$(TARGET).lib +LIB1FILES= \ + $(SLB)$/ooo.lib \ + $(SLB)$/stream.lib \ + $(SLB)$/filter.lib +SHL1LIBS=$(LIB1TARGET) +SHL1STDLIBS+= \ + $(SVLLIB) \ + $(SOTLIB) \ + $(SVXLIB) \ + $(SO2LIB) \ + $(SVTOOLLIB) \ + $(UNOTOOLSLIB) \ + $(TOOLSLIB) \ + $(COMPHELPERLIB) \ + $(UCBHELPERLIB) \ + $(CPPUHELPERLIB) \ + $(CPPULIB) \ + $(SALLIB) \ + -lwpd +SHL1TARGET = $(TARGET)$(UPD)$(DLLPOSTFIX) +SHL1IMPLIB = i$(SHL1TARGET) +SHL1LIBS = $(LIB1TARGET) +SHL1VERSIONMAP=$(TARGET).map +DEF1NAME=$(SHL1TARGET) + +.INCLUDE : target.mk diff --git a/writerperfect/util/wpft.map b/writerperfect/util/wpft.map new file mode 100644 index 000000000000..7152f7ebd013 --- /dev/null +++ b/writerperfect/util/wpft.map @@ -0,0 +1,8 @@ +WPFT_1_0 { + global: + component_getImplementationEnvironment; + component_writeInfo; + component_getFactory; + local: + *; +}; |