public
Description: A Toolkit for creating Desktop Hardware Accelerated Graphics with JS.
Homepage:
Clone URL: git://github.com/philogb/v8-gl.git
v8-gl / Makefile
100644 17 lines (11 sloc) 0.418 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Pull in platform specific settings.
include Makefile.$(firstword $(subst _, ,$(shell uname -s)))
 
CC = g++
CFLAGS := $(CFLAGS) -m32 -Wall -Iv8/include
PROG = v8-gl
 
SRCS = main.cpp imageloader.cpp utils.cpp v8-gl.cpp glbindings/glbind.cpp glesbindings/glesbind.cpp glubindings/glubind.cpp glutbindings/glutbind.cpp
 
all: $(PROG)
 
$(PROG): $(SRCS)
$(CC) $(CFLAGS) $(SRCS) -o $(PROG) $(LIBS)
 
clean:
rm -f $(PROG)