]> git.saurik.com Git - wxWidgets.git/blame - utils/configtool/src/makefile.unx
regenerated with DESTDIR fixes
[wxWidgets.git] / utils / configtool / src / makefile.unx
CommitLineData
d7463f75
JS
1# makefile
2
3CXXFLAGS = `wx-config --cxxflags`
4LDFLAGS = `wx-config --libs`
5
6PROGRAM = wxconfigtool
7
8OBJECTS = $(TARGET).o wxconfigtool.o appsettings.o configitem.o \
9 configitemselector.o configtooldoc.o configtoolview.o configtree.o \
10 custompropertydialog.o htmlparser.o mainframe.o propeditor.o \
11 property.o settingsdialog.o utils.o
12
13# implementation
14
15.SUFFIXES: .o .cpp
16
17.cpp.o :
18 $(CXX) -c $(CXXFLAGS) -o $@ $<
19
20all: $(PROGRAM)
21
22$(PROGRAM): $(OBJECTS)
23 $(CXX) -o $(PROGRAM) $(OBJECTS) $(LDFLAGS)
24
25clean:
26 rm -f *.o $(PROGRAM)
27