summaryrefslogtreecommitdiff
path: root/lotuswordpro/util
diff options
context:
space:
mode:
authorFong Lin <pflin@novell.com>2010-10-08 17:04:46 +0100
committerMichael Meeks <michael.meeks@novell.com>2010-10-08 17:04:46 +0100
commitcc316b39d9110c536e1758a4f814738ca209bb02 (patch)
tree0ff290d366ff8fea16ebc7e7781cc14b563f9b37 /lotuswordpro/util
parent949fa63a66adc1ba54a0c353afd66bb863024d27 (diff)
Port of Lotus Word Pro filter, by Fong Lin and Noel Power
Diffstat (limited to 'lotuswordpro/util')
-rw-r--r--lotuswordpro/util/lwpft.map8
-rw-r--r--lotuswordpro/util/makefile.mk37
2 files changed, 45 insertions, 0 deletions
diff --git a/lotuswordpro/util/lwpft.map b/lotuswordpro/util/lwpft.map
new file mode 100644
index 000000000000..f4ed78b9e970
--- /dev/null
+++ b/lotuswordpro/util/lwpft.map
@@ -0,0 +1,8 @@
+UDK_3_0_0 {
+ global:
+ component_getImplementationEnvironment;
+ component_writeInfo;
+ component_getFactory;
+ local:
+ *;
+};
diff --git a/lotuswordpro/util/makefile.mk b/lotuswordpro/util/makefile.mk
new file mode 100644
index 000000000000..938cdc0c5d88
--- /dev/null
+++ b/lotuswordpro/util/makefile.mk
@@ -0,0 +1,37 @@
+PRJ=..
+PRJNAME=lwpft
+TARGET=lwpft
+VERSION=$(UPD)
+
+.INCLUDE : settings.mk
+
+LIB1TARGET= $(SLB)$/$(TARGET).lib
+LIB1FILES= \
+ $(SLB)$/filter.lib \
+ $(SLB)$/xfilter.lib
+SHL1LIBS=$(LIB1TARGET)
+SHL1STDLIBS+= \
+ $(TOOLSLIB) \
+ $(COMPHELPERLIB) \
+ $(UCBHELPERLIB) \
+ $(CPPUHELPERLIB) \
+ $(CPPULIB) \
+ $(SALLIB) \
+ $(SFXLIB) \
+ $(SOTLIB) \
+ $(VCLLIB) \
+ $(ICUUCLIB) \
+ $(ICUINLIB) \
+ $(ICULELIB) \
+ $(SVXCORELIB) \
+ $(GOODIESLIB) \
+ $(SVTOOLLIB) \
+ $(XMLOFFLIB)
+
+SHL1TARGET = $(TARGET)$(DLLPOSTFIX)
+SHL1IMPLIB = i$(SHL1TARGET)
+SHL1LIBS = $(LIB1TARGET)
+SHL1VERSIONMAP=$(TARGET).map
+DEF1NAME=$(SHL1TARGET)
+
+.INCLUDE : target.mk