]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/demo/dllwidget/Makefile
fixed the width of the (week day as number) field, should be 1, not 2
[wxWidgets.git] / wxPython / demo / dllwidget / Makefile
... / ...
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