2015-12-28 07:02:57 +00:00
|
|
|
include $(top_srcdir)/Makefile.decl
|
|
|
|
|
|
|
|
NULL =
|
|
|
|
|
|
|
|
CLEANFILES =
|
|
|
|
|
|
|
|
TEST_PROGS += test-css-nodes
|
|
|
|
test_in_files = test-css-nodes.test.in
|
|
|
|
|
|
|
|
check_PROGRAMS = $(TEST_PROGS)
|
|
|
|
|
|
|
|
test_css_nodes_CFLAGS = \
|
2016-01-03 17:05:57 +00:00
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_builddir)/gdk \
|
|
|
|
-I$(top_srcdir)/gdk \
|
|
|
|
$(GTK_DEBUG_FLAGS) \
|
|
|
|
$(GTK_DEP_CFLAGS) \
|
|
|
|
$(NULL)
|
2015-12-28 07:02:57 +00:00
|
|
|
|
|
|
|
test_css_nodes_LDADD = \
|
2016-10-05 19:38:34 +00:00
|
|
|
$(top_builddir)/gtk/libgtk-4.la \
|
2016-01-03 17:05:57 +00:00
|
|
|
$(GTK_DEP_LIBS) \
|
|
|
|
$(NULL)
|
2015-12-28 07:02:57 +00:00
|
|
|
|
|
|
|
test_css_nodes_SOURCES = \
|
2016-01-03 17:05:57 +00:00
|
|
|
test-css-nodes.c \
|
|
|
|
$(NULL)
|
2015-12-28 07:02:57 +00:00
|
|
|
|
|
|
|
test_data = \
|
2016-01-20 02:38:30 +00:00
|
|
|
box.ltr.ui box.ltr.nodes \
|
|
|
|
box.rtl.ui box.rtl.nodes \
|
2016-02-08 08:15:39 +00:00
|
|
|
box-packing.ltr.ui box-packing.ltr.nodes \
|
|
|
|
box-packing.rtl.ui box-packing.rtl.nodes \
|
2016-01-20 02:38:30 +00:00
|
|
|
buttons.ui buttons.nodes \
|
|
|
|
checkbutton.ltr.ui checkbutton.ltr.nodes \
|
|
|
|
checkbutton.rtl.ui checkbutton.rtl.nodes \
|
2016-03-02 20:20:31 +00:00
|
|
|
combobox.ui combobox.nodes \
|
2016-01-20 02:38:30 +00:00
|
|
|
entries.ui entries.nodes \
|
|
|
|
expander.ltr.ui expander.ltr.nodes \
|
|
|
|
expander.rtl.ui expander.rtl.nodes \
|
|
|
|
levelbar.ltr.ui levelbar.ltr.nodes \
|
|
|
|
levelbar.rtl.ui levelbar.rtl.nodes \
|
2016-02-15 19:20:48 +00:00
|
|
|
notebook-arrows.ui notebook-arrows.nodes \
|
|
|
|
notebook-arrows2.ui notebook-arrows2.nodes \
|
2016-01-20 02:38:30 +00:00
|
|
|
notebook.top.ltr.ui notebook.top.ltr.nodes \
|
|
|
|
notebook.top.rtl.ui notebook.top.rtl.nodes \
|
|
|
|
notebook.left.ltr.ui notebook.left.ltr.nodes \
|
|
|
|
notebook.left.rtl.ui notebook.left.rtl.nodes \
|
|
|
|
notebook.right.ltr.ui notebook.right.ltr.nodes \
|
|
|
|
notebook.right.rtl.ui notebook.right.rtl.nodes \
|
|
|
|
notebook.bottom.ltr.ui notebook.bottom.ltr.nodes \
|
|
|
|
notebook.bottom.rtl.ui notebook.bottom.rtl.nodes \
|
|
|
|
paned.ltr.ui paned.ltr.nodes \
|
|
|
|
paned.rtl.ui paned.rtl.nodes \
|
|
|
|
progressbar.ui progressbar.nodes \
|
2016-03-25 17:12:00 +00:00
|
|
|
scale.ui scale.nodes \
|
2015-12-28 07:02:57 +00:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
EXTRA_DIST += $(test_in_files) $(test_data)
|
|
|
|
|
|
|
|
if BUILDOPT_INSTALL_TESTS
|
|
|
|
insttestdir=$(libexecdir)/installed-tests/$(PACKAGE)/css/nodes
|
|
|
|
insttest_PROGRAMS = $(TEST_PROGS)
|
|
|
|
insttest_DATA = $(test_data)
|
|
|
|
|
|
|
|
substitutions = \
|
2016-01-03 17:05:57 +00:00
|
|
|
-e s,@libexecdir\@,$(libexecdir),g \
|
|
|
|
$(NULL)
|
2015-12-28 07:02:57 +00:00
|
|
|
|
|
|
|
test_files = $(test_in_files:.test.in=.test)
|
|
|
|
|
|
|
|
$(test_files): %.test: %.test.in
|
2016-01-03 17:05:57 +00:00
|
|
|
$(AM_V_GEN) sed $(substitutions) $< > $@.tmp && mv $@.tmp $@
|
2015-12-28 07:02:57 +00:00
|
|
|
|
|
|
|
EXTRA_DIST += $(test_files)
|
|
|
|
|
|
|
|
CLEANFILES += $(test_files)
|
|
|
|
|
|
|
|
testmetadir = $(datadir)/installed-tests/$(PACKAGE)/css/nodes
|
|
|
|
testmeta_DATA = $(test_files)
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
-include $(top_srcdir)/git.mk
|