1AM_CFLAGS = \ 2 -fvisibility=hidden \ 3 -I $(top_srcdir)/include/drm \ 4 -I $(top_srcdir)/amdgpu \ 5 -I $(top_srcdir) \ 6 -pthread 7 8LDADD = $(top_builddir)/libdrm.la \ 9 $(top_builddir)/amdgpu/libdrm_amdgpu.la \ 10 $(CUNIT_LIBS) 11 12if HAVE_INSTALL_TESTS 13bin_PROGRAMS = \ 14 amdgpu_test 15else 16noinst_PROGRAMS = \ 17 amdgpu_test 18endif 19 20amdgpu_test_CPPFLAGS = $(CUNIT_CFLAGS) 21 22amdgpu_test_SOURCES = \ 23 amdgpu_test.c \ 24 amdgpu_test.h \ 25 basic_tests.c \ 26 bo_tests.c \ 27 cs_tests.c \ 28 decode_messages.h \ 29 vce_tests.c \ 30 vce_ib.h \ 31 frame.h \ 32 uvd_enc_tests.c \ 33 vcn_tests.c \ 34 uve_ib.h \ 35 deadlock_tests.c \ 36 vm_tests.c \ 37 ras_tests.c \ 38 syncobj_tests.c 39