]> git.saurik.com Git - wxWidgets.git/blame - utils/tex2rtf/src/makefile.unx
Moved the popup menu event handlers to dialog event handler
[wxWidgets.git] / utils / tex2rtf / src / makefile.unx
CommitLineData
68df5777
RR
1# makefile
2
3CC = g++
4
5PROGRAM = tex2rtf
9a29912f
JS
6
7OBJECTS = tex2rtf.o tex2any.o texutils.o rtfutils.o xlputils.o htmlutil.o readshg.o table.o
8
68df5777
RR
9# implementation
10
11.SUFFIXES: .o .cpp
12
13.cpp.o :
a6f762a6 14 $(CXX) -c `wx-config --cxxflags` -o $@ $<
68df5777
RR
15
16all: $(PROGRAM)
17
18$(PROGRAM): $(OBJECTS)
a6f762a6 19 $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
68df5777
RR
20
21clean:
22 rm -f *.o $(PROGRAM)
9a29912f 23