CFLAGS=`sdl-config --cflags`
LIBS=`sdl-config --libs` -lSDL_cfg

test : main.c
	gcc -o $@ $(CFLAGS) $^ $(LIBS)
