1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-24 16:01:26 +00:00

remove rule to generate dmadata_table.py

This commit is contained in:
Dragorn421 2025-02-18 09:57:28 +01:00
parent d2624056d9
commit ba29f9c2c6
No known key found for this signature in database
GPG key ID: 381AEBAF3D429335

View file

@ -1,6 +1,6 @@
ROOT := ../../../../ ROOT := ../../../../
DATA_FILES := actor_ids.py object_ids.py entrance_table_mini.py scene_table_mini.py dmadata_table.py DATA_FILES := actor_ids.py object_ids.py entrance_table_mini.py scene_table_mini.py
default: default:
@echo 'Run `make all` or with the appropriate target to (re)build data files' @echo 'Run `make all` or with the appropriate target to (re)build data files'
@ -51,12 +51,3 @@ scene_table_mini.py: $(ROOT)/include/tables/scene_table.h
-D'DEFINE_SCENE(name, _1, enumValue, _3, _4, _5)=(#name, #enumValue),' \ -D'DEFINE_SCENE(name, _1, enumValue, _3, _4, _5)=(#name, #enumValue),' \
$< >> $@ $< >> $@
echo ')' >> $@ echo ')' >> $@
dmadata_table.py: $(ROOT)/include/tables/dmadata_table_mqdbg.h
echo '# This file was generated from $<' > $@
echo >> $@
echo 'DATA = (' >> $@
cpp -P \
-D'DEFINE_DMA_ENTRY(name, _1)=#name,' \
$< >> $@
echo ')' >> $@