[go: up one dir, main page]

File: Makefile.sandbox

package info (click to toggle)
duktape 2.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 20,496 kB
  • sloc: ansic: 203,676; python: 5,856; makefile: 476; cpp: 205
file content (9 lines) | stat: -rw-r--r-- 173 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#
#  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