comparison test/automated/Makefile @ 3711:80839fc6b8e1 gsoc2009_unit_tests

First revision of the automated test suite.
author Edgar Simo <bobbens@gmail.com>
date Fri, 19 Jun 2009 18:53:58 +0000
parents
children 916469fbdc29
comparison
equal deleted inserted replaced
3710:8600c345cd77 3711:80839fc6b8e1
1
2
3 CFLAGS := `sdl-config --cflags`
4 LDFLAGS := `sdl-config --libs`
5
6 COMMON_SRC := SDL_at.c
7 COMMON_INCLUDE := SDL_at.h
8
9
10 .PHONY: all
11
12
13 all: rwops
14
15 rwops: rwops.c $(COMMON_INCLUDE)
16 $(CC) $(CFLAGS) $(LDFLAGS) -o rwops rwops.c $(COMMON_SRC)