#
#  Example Makefile for building the eval example
#

CC = gcc

eval:
	$(CC) -o $@ -std=c99 -O2 -Wall -Wextra -Isrc/ \
		src/duktape.c examples/eval/eval.c -lm
