2011-04-07 00:15:42 +00:00
|
|
|
include $(top_srcdir)/Makefile.decl
|
|
|
|
|
|
|
|
TEST_PROGS += test-css-parser
|
|
|
|
|
|
|
|
check_PROGRAMS = $(TEST_PROGS)
|
|
|
|
|
|
|
|
test_css_parser_CFLAGS = \
|
2011-04-07 00:24:51 +00:00
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_builddir)/gdk \
|
|
|
|
-I$(top_srcdir)/gdk \
|
|
|
|
-DGDK_DISABLE_DEPRECATED \
|
|
|
|
-DGTK_DISABLE_DEPRECATED \
|
|
|
|
$(GTK_DEBUG_FLAGS) \
|
|
|
|
$(GTK_DEP_CFLAGS)
|
2011-04-07 00:15:42 +00:00
|
|
|
|
|
|
|
test_css_parser_LDADD = \
|
2011-04-07 00:24:51 +00:00
|
|
|
$(top_builddir)/gdk/libgdk-3.la \
|
|
|
|
$(top_builddir)/gtk/libgtk-3.la \
|
|
|
|
$(GTK_DEP_LIBS)
|
2011-04-07 00:15:42 +00:00
|
|
|
|
|
|
|
test_css_parser_SOURCES = \
|
2011-04-07 00:24:51 +00:00
|
|
|
test-css-parser.c
|
2011-04-07 00:15:42 +00:00
|
|
|
|
2011-04-07 00:24:51 +00:00
|
|
|
clean-local:
|
|
|
|
rm $(builddir)/*.out.css || true
|
|
|
|
|
|
|
|
EXTRA_DIST += \
|
2011-04-07 10:20:22 +00:00
|
|
|
close-at-end-of-file.css \
|
2011-04-07 23:32:13 +00:00
|
|
|
close-at-end-of-file.errors \
|
2011-04-07 10:20:22 +00:00
|
|
|
close-at-end-of-file.ref.css \
|
2011-04-07 00:24:51 +00:00
|
|
|
does-not-exist.css \
|
2011-04-07 23:32:13 +00:00
|
|
|
does-not-exist.errors \
|
2011-04-07 00:24:51 +00:00
|
|
|
does-not-exist.ref.css \
|
2011-04-07 10:14:58 +00:00
|
|
|
no-semicolon.css \
|
|
|
|
no-semicolon.ref.css \
|
2011-04-07 00:24:51 +00:00
|
|
|
simple.css
|