10 lines
173 B
Makefile
10 lines
173 B
Makefile
|
#
|
||
|
# Example Makefile for building the sandbox example
|
||
|
#
|
||
|
|
||
|
CC = gcc
|
||
|
|
||
|
sandbox:
|
||
|
$(CC) -o $@ -std=c99 -O2 -Wall -Wextra -Isrc/ \
|
||
|
src/duktape.c examples/sandbox/sandbox.c -lm
|