]> git.saurik.com Git - wxWidgets.git/blame_incremental - utils/tex2rtf/src/makefile.unx
Patch [ 1314868 ] [wxMSW] Show MDI child menubars when ShowFullScreen(false)
[wxWidgets.git] / utils / tex2rtf / src / makefile.unx
... / ...
CommitLineData
1# makefile
2
3CXXFLAGS = `wx-config --cxxflags`
4LDFLAGS = `wx-config --libs`
5
6PROGRAM = tex2rtf
7
8OBJECTS = tex2rtf.o tex2any.o texutils.o rtfutils.o xlputils.o htmlutil.o readshg.o table.o
9
10# implementation
11
12.SUFFIXES: .o .cpp
13
14.cpp.o :
15 $(CXX) -c $(CXXFLAGS) -o $@ $<
16
17all: $(PROGRAM)
18
19$(PROGRAM): $(OBJECTS)
20 $(CXX) -o $(PROGRAM) $(OBJECTS) $(LDFLAGS)
21
22clean:
23 rm -f *.o $(PROGRAM)
24