wxWidgets/wxPython/demo/dllwidget/Makefile
Robin Dunn be050baf48 dllwidget demo updates
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12894 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-06 20:27:40 +00:00

17 lines
233 B
Makefile

CXX = c++
CXXFLAGS = `wx-config --cxxflags` -fPIC -I.
LDFLAGS = `wx-config --libs`
all: test_dll.so
test_dll.so: test_dll.o
$(CXX) $(LDFLAGS) -shared -o $@ $<
%.o : %.cpp
$(CXX) -c $(CXXFLAGS) -o $@ $<
clean:
rm -f *.o *.so