From 7f0d74e8424191c9ba5986b1b57bf3dbbfdb789d Mon Sep 17 00:00:00 2001 From: Alejandro Javier Asenjo Nitti Date: Sat, 14 Oct 2023 05:14:25 -0300 Subject: [PATCH] make expected rule for asm-differ --- .gitignore | 2 ++ Makefile | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index c28f2af5..3f539c05 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ asm +expected +__pycache__ .splat/ starfox64.ld starfox64.us.yaml diff --git a/Makefile b/Makefile index c2e0812f..53ba57e9 100644 --- a/Makefile +++ b/Makefile @@ -218,6 +218,12 @@ format: checkformat: @./tools/check_format.sh -j $(nproc) +# asm-differ expected object files +expected: + mkdir -p expected/build + rm -rf expected/build/ + cp -r build/ expected/build/ + #### Various Recipes ####