]> git.saurik.com Git - wxWidgets.git/blame - wxPython/demo/dllwidget/Makefile
moved vararg CRT functions wrappers to a new wxcrtvararg.h header
[wxWidgets.git] / wxPython / demo / dllwidget / Makefile
CommitLineData
4a61305d
RD
1
2CXX = c++
3CXXFLAGS = `wx-config --cxxflags` -fPIC -I.
4LDFLAGS = `wx-config --libs`
5
6
be050baf 7all: test_dll.so
4a61305d
RD
8
9test_dll.so: test_dll.o
10 $(CXX) $(LDFLAGS) -shared -o $@ $<
11
12%.o : %.cpp
13 $(CXX) -c $(CXXFLAGS) -o $@ $<
14
15clean:
be050baf 16 rm -f *.o *.so