git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21083 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
28 lines
538 B
Plaintext
28 lines
538 B
Plaintext
# makefile
|
|
|
|
CXXFLAGS = `wx-config --cxxflags`
|
|
LDFLAGS = `wx-config --libs`
|
|
|
|
PROGRAM = wxconfigtool
|
|
|
|
OBJECTS = $(TARGET).o wxconfigtool.o appsettings.o configitem.o \
|
|
configitemselector.o configtooldoc.o configtoolview.o configtree.o \
|
|
custompropertydialog.o htmlparser.o mainframe.o propeditor.o \
|
|
property.o settingsdialog.o utils.o
|
|
|
|
# implementation
|
|
|
|
.SUFFIXES: .o .cpp
|
|
|
|
.cpp.o :
|
|
$(CXX) -c $(CXXFLAGS) -o $@ $<
|
|
|
|
all: $(PROGRAM)
|
|
|
|
$(PROGRAM): $(OBJECTS)
|
|
$(CXX) -o $(PROGRAM) $(OBJECTS) $(LDFLAGS)
|
|
|
|
clean:
|
|
rm -f *.o $(PROGRAM)
|
|
|