Files
wxWidgets/wxPython/demo/dllwidget/Makefile
T
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