aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure.ac
diff options
context:
space:
mode:
authorGravatar joe.gregorio <joe.gregorio@2bbb7eff-a529-9590-31e7-b0007b416f81>2009-01-06 17:03:16 +0000
committerGravatar joe.gregorio <joe.gregorio@2bbb7eff-a529-9590-31e7-b0007b416f81>2009-01-06 17:03:16 +0000
commit092590b88dd87d2fca87d38b2003068ffef37f2f (patch)
tree9e1305d614097cb25ee5977521cd7fe014b1e0b0 /configure.ac
parentacb8fb07bf751538c31a2e0158f8513799402569 (diff)
Initial automake and autoconf files to build core into libskia.a.
git-svn-id: http://skia.googlecode.com/svn/trunk@55 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac11
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000000..5128718f72
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,11 @@
+AC_INIT([libskia], [1.0], [bug-automake@gnu.org])
+AM_INIT_AUTOMAKE([-Wall -Werror foreign])
+AC_PROG_CXX
+AC_PROG_RANLIB
+AC_CONFIG_HEADERS([config.h])
+AC_CONFIG_FILES([
+Makefile
+src/core/Makefile
+bench/Makefile
+])
+AC_OUTPUT