added summerhack
[summerhack] / tools / curve_draw / Makefile
1 obj = curve_draw.o curves.o cursors.o gfx.o
2 bin = curve_draw
3
4 CXXFLAGS = -g -ansi -pedantic -Wall `sdl-config --cflags`
5
6 include vmath/Makefile-part
7
8 $(bin): $(obj)
9         $(CXX) -o $@ $(obj) `sdl-config --libs`
10
11 .PHONY: clean
12 clean:
13         $(RM) $(obj) $(bin)