Module: vkd3d Branch: master Commit: 15b918acd56705a392764c061ded980466fae60f URL: https://source.winehq.org/git/vkd3d.git/?a=commit;h=15b918acd56705a392764c06...
Author: Józef Kucia jkucia@codeweavers.com Date: Mon Jan 15 13:49:03 2018 +0100
build: Do not install vkd3d-compiler.
At this stage, vkd3d-compiler is useful only as an internal tool for testing.
Signed-off-by: Józef Kucia jkucia@codeweavers.com Signed-off-by: Henri Verbeet hverbeet@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile.am b/Makefile.am index 15a1783..3ad9c2e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -107,7 +107,7 @@ nodist_pkgconfig_DATA = libvkd3d.pc libvkd3d-utils.pc CLEANFILES = libvkd3d.pc libvkd3d-utils.pc EXTRA_DIST += libs/vkd3d/libvkd3d.pc.in libs/vkd3d-utils/libvkd3d-utils.pc.in
-bin_PROGRAMS = vkd3d-compiler +noinst_PROGRAMS = vkd3d-compiler vkd3d_compiler_SOURCES = programs/vkd3d-compiler/main.c vkd3d_compiler_LDADD = libvkd3d-shader.la libvkd3d-common.la
@@ -119,7 +119,7 @@ tests_d3d12_LDADD = $(LDADD) @PTHREAD_LIBS@
DEMOS_LDADD = $(LDADD) libvkd3d-shader.la @XCB_LIBS@ @VULKAN_LIBS@ DEMOS_CFLAGS = @XCB_CFLAGS@ -noinst_PROGRAMS = $(vkd3d_demos) +noinst_PROGRAMS += $(vkd3d_demos) EXTRA_DIST += $(vkd3d_demos_headers)
demos_gears_CFLAGS = $(DEMOS_CFLAGS)