Skip to content

Commit

Permalink
[build] Fix indentation in ninja rules
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulBone committed Aug 25, 2024
1 parent 34415d4 commit c4b8a17
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/build.m
Original file line number Diff line number Diff line change
Expand Up @@ -863,40 +863,40 @@ not is_empty(DupModules)
rule plztyperes
command = $path/plzc $pcflags_global --mode make-typeres-exports $
--module-name-check $name $
--module-name-check $name $
--source-path $source_path $
$in -o $out
description = Calculating type & resource exports for $name
rule plzi
command = $path/plzc $pcflags_global --mode make-interface $
--module-name-check $name $
--module-name-check $name $
--source-path $source_path $
$in -o $out
$in -o $out
description = Making interface for $name
rule plzscan
command = $path/plzc $pcflags_global --mode scan $
--target-bytecode $target --target-interface $interface $
--module-name-check $name $
--source-path $source_path $
$in -o $out
--target-bytecode $target --target-interface $interface $
--module-name-check $name $
--source-path $source_path $
$in -o $out
description = Scanning $name for dependencies
rule plzc
command = $path/plzc $pcflags_global --mode compile $
--import-whitelist $import_whitelist $
--module-name-check $name $
--source-path $source_path $
$in -o $out
--import-whitelist $import_whitelist $
--module-name-check $name $
--source-path $source_path $
$in -o $out
description = Compiling $name
rule plzgf
command = $path/plzc $pcflags_global --mode generate-foreign $
--module-name-check $name $
--source-path $source_path $
--output-header $header $
$in -o $out
--module-name-check $name $
--source-path $source_path $
--output-header $header $
$in -o $out
description = Generating foreign hooks for $name
rule gen_init
Expand Down

0 comments on commit c4b8a17

Please sign in to comment.