blob: e846efbebb90fe4b0814ccfde7f6aa7bc4fab7fe [file] [log] [blame]
Eric Anholtd7cf2982007-07-19 04:59:59 -07001AM_CFLAGS = \
Patrice Mandin405c48b2007-08-02 20:06:37 +02002 -I $(top_srcdir)/shared-core \
3 -I $(top_srcdir)/libdrm
Eric Anholtd7cf2982007-07-19 04:59:59 -07004
5noinst_PROGRAMS = \
6 dristat \
7 drmstat
8
9EXTRA_LTLIBRARIES = libdrmtest.la
10libdrmtest_la_SOURCES = \
11 drmtest.c \
12 drmtest.h
13libdrmtest_la_LIBADD = \
14 $(top_builddir)/libdrm/libdrm.la
15
16LDADD = libdrmtest.la
17
Eric Anholtd6a45eb2007-08-13 11:27:46 -070018TESTS = auth \
19 openclose \
Eric Anholtd7cf2982007-07-19 04:59:59 -070020 getversion \
Eric Anholtecf3fbe2007-07-19 06:17:04 -070021 getclient \
22 updatedraw
Eric Anholtd7cf2982007-07-19 04:59:59 -070023
Eric Anholtd7cf2982007-07-19 04:59:59 -070024EXTRA_PROGRAMS = $(TESTS)
Patrice Mandin405c48b2007-08-02 20:06:37 +020025CLEANFILES = $(EXTRA_PROGRAMS) $(EXTRA_LTLIBRARIES)
26