# Makefile for lua_test
# Satofumi KAMIMURA
# $Id$

# Compile options
CC = ${CXX}
CXXFLAGS = -g -O0 -Wall -Werror
LDFLAGS =
LDLIBS = -llua -lluabind -ldl

# Target
TARGET = hello \
	simple_add simple_hello simple_class simple_template \
	readParameters \
	array_rw \
	iterator_sample \

all : ${TARGET}

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

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

.PHONY : all clean depend
######################################################################

# DO NOT DELETE
