summaryrefslogtreecommitdiff
path: root/runner/testdata/Makefile.am
blob: fe225d8dd431b95e2b75fd3fcdcd13eb02ee5da1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
testdata_progs = no-subtests skippers successtest

noinst_PROGRAMS = $(testdata_progs)

test-list.txt: Makefile
	@echo TESTLIST > $@
	@echo ${testdata_progs} >> $@
	@echo END TESTLIST >> $@

noinst_DATA = test-list.txt

all-local: .gitignore
.gitignore: Makefile.am
	@echo "$(testdata_progs) test-list.txt /.gitignore" | sed 's/\s\+/\n/g' | sort > $@

CLEANFILES = test-list.txt .gitignore

AM_CFLAGS = $(CWARNFLAGS) -Wno-unused-result $(DEBUG_CFLAGS) \
	-I$(top_srcdir)/include/drm-uapi \
	-I$(srcdir)/../.. \
	-I$(srcdir)/../../lib \
	$(DRM_CFLAGS) $(CAIRO_CFLAGS) $(LIBUDEV_CFLAGS) \
	-D_GNU_SOURCE

LDADD = $(top_builddir)/lib/libintel_tools.la