sdlterm/Makefile
author Radek Brich <radek.brich@devl.cz>
Mon, 17 Mar 2014 20:40:04 +0100
changeset 86 0978fb755d31
parent 72 6e0656600754
permissions -rw-r--r--
Add core Application (adjusted), Window (new version), Signal (replaces Emitter), Size (adjusted). Add application demo.

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