summaryrefslogtreecommitdiffstats
path: root/WebKitTools/GNUmakefile.am
diff options
context:
space:
mode:
authorUpstream <upstream-import@none>1970-01-12 13:46:40 +0000
committerUpstream <upstream-import@none>1970-01-12 13:46:40 +0000
commitd8543bb6618c17b12da906afa77d216f58cf4058 (patch)
treec58dc05ed86825bd0ef8d305d58c8205106b540f /WebKitTools/GNUmakefile.am
downloadexternal_webkit-d8543bb6618c17b12da906afa77d216f58cf4058.zip
external_webkit-d8543bb6618c17b12da906afa77d216f58cf4058.tar.gz
external_webkit-d8543bb6618c17b12da906afa77d216f58cf4058.tar.bz2
external/webkit r30707
Diffstat (limited to 'WebKitTools/GNUmakefile.am')
-rw-r--r--WebKitTools/GNUmakefile.am48
1 files changed, 48 insertions, 0 deletions
diff --git a/WebKitTools/GNUmakefile.am b/WebKitTools/GNUmakefile.am
new file mode 100644
index 0000000..26758b5
--- /dev/null
+++ b/WebKitTools/GNUmakefile.am
@@ -0,0 +1,48 @@
+noinst_PROGRAMS += \
+ Programs/GtkLauncher \
+ Programs/DumpRenderTree
+
+# GtkLauncher
+Programs_GtkLauncher_CPPFLAGS = \
+ -I$(srcdir)/WebKit/gtk \
+ $(global_cppflags)
+
+Programs_GtkLauncher_SOURCES = \
+ WebKitTools/GtkLauncher/main.c
+
+Programs_GtkLauncher_CFLAGS = \
+ $(GLOBALDEPS_CFLAGS) \
+ $(WEBKITDEPS_CFLAGS) \
+ $(global_cflags)
+
+Programs_GtkLauncher_LDADD = \
+ libwebkit-1.0.la
+
+Programs_GtkLauncher_LDFLAGS = -rpath $(CURDIR)/.libs
+
+# DumpRenderTree
+Programs_DumpRenderTree_CPPFLAGS = \
+ -I$(srcdir)/WebKitTools/DumpRenderTree \
+ -I$(srcdir)/WebKitTools/DumpRenderTree/gtk \
+ -I$(srcdir)/WebKit/gtk \
+ $(global_cppflags)
+
+Programs_DumpRenderTree_SOURCES = \
+ WebKitTools/DumpRenderTree/gtk/DumpRenderTree.cpp \
+ WebKitTools/DumpRenderTree/LayoutTestController.cpp \
+ WebKitTools/DumpRenderTree/GCController.cpp \
+ WebKitTools/DumpRenderTree/WorkQueue.cpp \
+ WebKitTools/DumpRenderTree/gtk/GCControllerGtk.cpp \
+ WebKitTools/DumpRenderTree/gtk/LayoutTestControllerGtk.cpp \
+ WebKitTools/DumpRenderTree/gtk/WorkQueueItemGtk.cpp
+
+Programs_DumpRenderTree_CXXFLAGS = \
+ $(GLOBALDEPS_CFLAGS) \
+ $(WEBKITDEPS_CFLAGS) \
+ $(global_cxxflags) \
+ $(global_cflags)
+
+Programs_DumpRenderTree_LDADD = \
+ libwebkit-1.0.la
+
+Programs_DumpRenderTree_LDFLAGS = -rpath $(CURDIR)/.libs