1 | # $Id: Makefile.kmk 98103 2023-01-17 14:15:46Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Makefile for D3D11 shader compilation.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2022-2023 Oracle and/or its affiliates.
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox base platform packages, as
|
---|
10 | # available from https://www.virtualbox.org.
|
---|
11 | #
|
---|
12 | # This program is free software; you can redistribute it and/or
|
---|
13 | # modify it under the terms of the GNU General Public License
|
---|
14 | # as published by the Free Software Foundation, in version 3 of the
|
---|
15 | # License.
|
---|
16 | #
|
---|
17 | # This program is distributed in the hope that it will be useful, but
|
---|
18 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | # General Public License for more details.
|
---|
21 | #
|
---|
22 | # You should have received a copy of the GNU General Public License
|
---|
23 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | #
|
---|
25 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | #
|
---|
27 |
|
---|
28 | SUB_DEPTH = ../../../../..
|
---|
29 | include $(KBUILD_PATH)/subheader.kmk
|
---|
30 |
|
---|
31 | OTHERS += \
|
---|
32 | $(PATH_SUB_CURRENT)/d3d11blitter.hlsl.vs.h \
|
---|
33 | $(PATH_SUB_CURRENT)/d3d11blitter.hlsl.ps.h
|
---|
34 | OTHERS_CLEAN += \
|
---|
35 | $(PATH_SUB_CURRENT)/d3d11blitter.hlsl.vs.h \
|
---|
36 | $(PATH_SUB_CURRENT)/d3d11blitter.hlsl.ps.h
|
---|
37 |
|
---|
38 | VBOX_FXC ?= $(PATH_SDK_$(VBOX_WINPSDK)_BIN)/fxc.exe
|
---|
39 |
|
---|
40 | $(PATH_SUB_CURRENT)/d3d11blitter.hlsl.vs.h: \
|
---|
41 | $(PATH_SUB_CURRENT)/Makefile.kmk \
|
---|
42 | $(PATH_SUB_CURRENT)/d3d11blitter.hlsl
|
---|
43 | $(VBOX_FXC) /nologo /Fhd3d11blitter.hlsl.vs.h /Evs_blitter /Tvs_5_0 d3d11blitter.hlsl
|
---|
44 |
|
---|
45 | $(PATH_SUB_CURRENT)/d3d11blitter.hlsl.ps.h: \
|
---|
46 | $(PATH_SUB_CURRENT)/Makefile.kmk \
|
---|
47 | $(PATH_SUB_CURRENT)/d3d11blitter.hlsl
|
---|
48 | $(VBOX_FXC) /nologo /Fhd3d11blitter.hlsl.ps.h /Eps_blitter /Tps_5_0 d3d11blitter.hlsl
|
---|
49 |
|
---|
50 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|