mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 10:20:09 +01:00
android: mesa: generate the format_{un,}pack.[ch] sources
Missed out with commit e1fdcddafe9(mesa: Autogenerate format_unpack.c) v2: Conditionaly print the python commands - s/@/$(hide) / (Chih-Wei) Cc: "10.5" <mesa-stable@lists.freedesktop.org> [Emil Velikov: Split our from a larger commit.] Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
This commit is contained in:
parent
6fb8017866
commit
5f7081eb90
1 changed files with 21 additions and 0 deletions
|
|
@ -34,6 +34,9 @@ sources := \
|
|||
main/enums.c \
|
||||
main/api_exec.c \
|
||||
main/dispatch.h \
|
||||
main/format_pack.c \
|
||||
main/format_unpack.c \
|
||||
main/format_info.h \
|
||||
main/remap_helper.h \
|
||||
main/get_hash.h
|
||||
|
||||
|
|
@ -124,3 +127,21 @@ format_info_deps := \
|
|||
|
||||
$(intermediates)/main/format_info.h: $(format_info_deps)
|
||||
@$(MESA_PYTHON2) $(FORMAT_INFO) $< > $@
|
||||
|
||||
FORMAT_PACK := $(LOCAL_PATH)/main/format_pack.py
|
||||
format_pack_deps := \
|
||||
$(LOCAL_PATH)/main/formats.csv \
|
||||
$(LOCAL_PATH)/main/format_parser.py \
|
||||
$(FORMAT_PACK)
|
||||
|
||||
$(intermediates)/main/format_pack.c: $(format_pack_deps)
|
||||
$(hide) $(MESA_PYTHON2) $(FORMAT_PACK) $< > $@
|
||||
|
||||
FORMAT_UNPACK := $(LOCAL_PATH)/main/format_unpack.py
|
||||
format_unpack_deps := \
|
||||
$(LOCAL_PATH)/main/formats.csv \
|
||||
$(LOCAL_PATH)/main/format_parser.py \
|
||||
$(FORMAT_UNPACK)
|
||||
|
||||
$(intermediates)/main/format_unpack.c: $(format_unpack_deps)
|
||||
$(hide) $(MESA_PYTHON2) $(FORMAT_UNPACK) $< > $@
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue