Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Unified Diff: Makefile

Issue 6070: Basic C bindings for v8.
Patch Set: Created 12 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | README.v8c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..532d2c0725db52e18ee90dc9da208e9fb5f2f7d7
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+
+.PHONY: all
+all: v8c
+
+libv8_g.so: include/v8c.h src/v8c.cc
+ scons mode=debug library=shared -j2
+
+v8c: include/v8c.h v8c-test.c libv8_g.so
+ gcc -g -o v8c-test v8c-test.c -L. -lv8_g
« no previous file with comments | « no previous file | README.v8c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698