added SDL tests
[glpixels] / Makefile.sdl
1 obj = sdlpixels.o
2 bin = sdlpixels
3
4 CFLAGS = -pedantic -Wall -g -O3 `sdl-config --cflags`
5 LDFLAGS = `sdl-config --libs` -lm
6
7 $(bin): $(obj)
8         $(CC) -o $@ $(obj) $(LDFLAGS)
9
10 .PHONY: clean
11 clean:
12         rm -f $(obj) $(bin)