Skip to content

Commit

Permalink
Merge pull request #1672 from ucb-bar/override-gen-src
Browse files Browse the repository at this point in the history
Allow overriding generated-src dir name
  • Loading branch information
abejgonzalez authored Nov 29, 2023
2 parents eba1b36 + bd3a456 commit 5405b4c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions variables.mk
Original file line number Diff line number Diff line change
Expand Up @@ -293,11 +293,12 @@ endif
# build output directory for compilation
#########################################################################################
# output for all project builds
gen_dir=$(sim_dir)/generated-src
generated_src_name ?=generated-src
gen_dir =$(sim_dir)/$(generated_src_name)
# per-project output directory
build_dir=$(gen_dir)/$(long_name)
build_dir =$(gen_dir)/$(long_name)
# final generated collateral per-project
GEN_COLLATERAL_DIR ?= $(build_dir)/gen-collateral
GEN_COLLATERAL_DIR ?=$(build_dir)/gen-collateral

#########################################################################################
# assembly/benchmark variables
Expand Down

0 comments on commit 5405b4c

Please sign in to comment.