compilation fix
[wxWidgets.git] / utils / tex2rtf / src / makefile.unx
0 / 23 (  0%)
CommitLineData
1# makefile
2
3CC = g++
4
5PROGRAM = tex2rtf
6
7OBJECTS = tex2rtf.o tex2any.o texutils.o rtfutils.o xlputils.o htmlutil.o readshg.o table.o
8
9# implementation
10
11.SUFFIXES: .o .cpp
12
13.cpp.o :
14 $(CXX) -c `wx-config --cxxflags` -o $@ $<
15
16all: $(PROGRAM)
17
18$(PROGRAM): $(OBJECTS)
19 $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
20
21clean:
22 rm -f *.o $(PROGRAM)
23