sdlterm/Makefile
author Radek Brich <radek.brich@devl.cz>
Wed, 30 Jan 2013 19:44:01 +0100
changeset 72 6e0656600754
parent 47 537d7c6b48a2
permissions -rw-r--r--
DriverSDL: Fix event dispatching. Add SDL events test.

CXXFLAGS=`sdl-config --cflags` -g -Wall -std=c++11 -Isrc
LDFLAGS=`sdl-config --libs` -lSDL_ttf
VPATH=src tests

all: test_sdlterm test_sdl_events

test_sdlterm: test_sdlterm.cc sdlterm.cc sdlterm.h
test_sdl_events: test_sdl_events.cc

clean:
	rm -f test_sdlterm test_sdl_events