]> git.saurik.com Git - wxWidgets.git/blob - utils/tex2rtf/src/Makefile.in
Added Makefile/Makefile.in to generate tex2rtf under linux/unix
[wxWidgets.git] / utils / tex2rtf / src / Makefile.in
1 # WXXT base directory
2 WXBASEDIR=@WXBASEDIR@
3
4 # set the OS type for compilation
5 OS=@OS@
6 # compile a library only
7 RULE=bin
8
9 # define library name
10 BIN_TARGET=tex2rtf
11 # define library sources
12 BIN_SRC=\
13 htmlutil.cpp \
14 maths.cpp \
15 readshg.cpp \
16 rtfutils.cpp \
17 table.cpp \
18 tex2any.cpp \
19 tex2rtf.cpp \
20 texutils.cpp \
21 xlputils.cpp
22
23 #define library objects
24 BIN_OBJ=\
25 htmlutil.o \
26 maths.o \
27 readshg.o \
28 rtfutils.o \
29 table.o \
30 tex2any.o \
31 tex2rtf.o \
32 texutils.o \
33 xlputils.o
34
35 # additional things needed to link
36 BIN_LINK=
37
38 # additional things needed to compile
39 ADD_COMPILE=
40
41 # include the definitions now
42 include ../../../../template.mak