curlParse/makefile
CPP = g++
OPTS = `wx-config --cxxflags --libs`
all:
wxrc gui.xrc -v -c -o gui.cpp
$(CPP) main.cc -o gcurl $(OPTS)
windows:
wxrc gui.xrc -v -c -o gui.cpp
g++ -static main.cc -o wxtest `wx-config --cxxflags --libs --static=yes`