CFLAGS=`sdl-config --cflags` `wx-config --cppflags`
LIBS=-lSDL_wx `sdl-config --libs` `wx-config --libs` -lSDL_wx

test : main.cpp
	g++ -o $@ $^ $(CFLAGS) $(LIBS)
