]> git.saurik.com Git - wxWidgets.git/blame_incremental - utils/tex2rtf/src/makefile.unx
added missing files
[wxWidgets.git] / utils / tex2rtf / src / makefile.unx
... / ...
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 $(CC) -c `wx-config --cxxflags` -o $@ $<
15
16all: $(PROGRAM)
17
18$(PROGRAM): $(OBJECTS)
19 $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
20
21clean:
22 rm -f *.o $(PROGRAM)
23