summaryrefslogtreecommitdiff
path: root/lingucomponent/source/thesaurus/mythes
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 12:06:36 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 12:06:36 +0000
commit402e0c1c0778e29b60a75fc5f008bda883e6f763 (patch)
tree15f5e10a3bca2121651a88351d91344a943140a5 /lingucomponent/source/thesaurus/mythes
parentc3a717d5719026be719143d95a27c027c1a2c881 (diff)
INTEGRATION: CWS ooo20031216 (1.1.2); FILE ADDED
2003/12/14 00:57:00 khendricks 1.1.2.2: fix for build issue 23535 due to duplicate utility functions Thanks to Volker for finding this problem. Kevin 2003/12/10 14:26:50 khendricks 1.1.2.1: Issue number: None Submitted by: Kevin B. Hendricks Reviewed by: project owner (me) adding in the new thesaurus implementation that removes all of the old hardcoded limits and problems with the old thesaurus Kevin
Diffstat (limited to 'lingucomponent/source/thesaurus/mythes')
-rw-r--r--lingucomponent/source/thesaurus/mythes/Makefile39
1 files changed, 39 insertions, 0 deletions
diff --git a/lingucomponent/source/thesaurus/mythes/Makefile b/lingucomponent/source/thesaurus/mythes/Makefile
new file mode 100644
index 000000000000..39d3cf71f9dc
--- /dev/null
+++ b/lingucomponent/source/thesaurus/mythes/Makefile
@@ -0,0 +1,39 @@
+
+CXX=g++
+
+CXXFLAGS= -O2 -Wall -ansi -pedantic -DMYTHES_STANDALONE -I.
+
+LDFLAGS=-L. -lmythes
+
+LIBS=libmythes.a
+
+AR=ar rc
+RANLIB=ranlib
+
+OBJS = mythes.o
+
+all: example
+
+libmythes.a: $(OBJS)
+ $(AR) $@ $(OBJS)
+ -@ ($(RANLIB) $@ || true) >/dev/null 2>&1
+
+example: example.o $(LIBS)
+ $(CXX) $(CXXFLAGS) -o $@ example.o $(LDFLAGS)
+
+%.o: %.cxx
+ $(CXX) $(CXXFLAGS) -c $<
+
+clean:
+ rm -f *.o *~ example libthes.a
+
+distclean: clean
+
+depend:
+ makedepend -- $(CXXFLAGS) -- *.[ch]xx
+
+# DO NOT DELETE THIS LINE -- make depend depends on it.
+
+mythes.o: mythes.hxx
+example.o: mythes.hxx
+