log wxChoice events in the same format as wxComboBox ones to make it simpler to compa...
[wxWidgets.git] / wxPython / demo / dllwidget / Makefile
0 / 16 (  0%)
CommitLineData
1
2CXX = c++
3CXXFLAGS = `wx-config --cxxflags` -fPIC -I.
4LDFLAGS = `wx-config --libs`
5
6
7all: test_dll.so
8
9test_dll.so: test_dll.o
10 $(CXX) $(LDFLAGS) -shared -o $@ $<
11
12%.o : %.cpp
13 $(CXX) -c $(CXXFLAGS) -o $@ $<
14
15clean:
16 rm -f *.o *.so