9 lines
161 B
Makefile
9 lines
161 B
Makefile
#
|
|
# 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
|