Mercurial > sdl-ios-xcode
view test/automated/Makefile @ 3714:1b710c8e4cfb gsoc2009_unit_tests
Test target should build if needed.
author | Edgar Simo <bobbens@gmail.com> |
---|---|
date | Sat, 20 Jun 2009 16:54:22 +0000 |
parents | a34bab848c7e |
children | 3c9d9c052c8f |
line wrap: on
line source
CFLAGS := -I. `sdl-config --cflags` LDFLAGS := `sdl-config --libs` COMMON_SRC := SDL_at.c COMMON_INCLUDE := SDL_at.h TESTS_ALL := rwops/rwops .PHONY: all clean test all: $(TESTS_ALL) test: all @./rwops/rwops rwops/rwops: rwops/rwops.c $(COMMON_INCLUDE) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ rwops/rwops.c $(COMMON_SRC) clean: $(RM) $(TESTS_ALL)