# Makefile for floating_evaluate
# Satofumi KAMIMURA
# $Id$

# Compile options
CC = ${CXX}
CXXFLAGS = -g -O0 -Wall -Werror ${INCLUDES}
INCLUDES = -I../../libs/system
LDFLAGS =
LDLIBS = `sdl-config --libs`


# Target
TARGET = floating_evaluate

all : ${TARGET}

clean :
	${RM} *.o ${TARGET}

depend :
	makedepend -Y -- ${INCLUDES} -- ${wildcard *.h *.cpp}

.PHONY : all clean depend test
######################################################################
REQUIRE_LIBS = ../../libs/system/sdl/system_sdl.a
${REQUIRE_LIBS} :
	cd ${@D}/ && ${MAKE} ${@F}

${TARGET} : ${REQUIRE_LIBS}
# DO NOT DELETE
