Skip to content

Commit

Permalink
Allow user to add their own suffix when using SDC (#2645)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxpkatz authored Oct 22, 2023
1 parent e7a6514 commit 13f63f2
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions Exec/Make.Castro
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,19 @@ endif

# need to put any build suffices before Make.defs
ifeq ($(USE_SIMPLIFIED_SDC), TRUE)
USERSuffix = .SMPLSDC
ifneq ($(USERSuffix),)
USERSuffix := .SMPLSDC$(USERSuffix)
else
USERSuffix = .SMPLSDC
endif
endif

ifeq ($(USE_TRUE_SDC), TRUE)
USERSuffix = .TRUESDC
ifneq ($(USERSuffix),)
USERSuffix := .TRUESDC$(USERSuffix)
else
USERSuffix = .TRUESDC
endif
endif

USE_MLMG = FALSE
Expand Down

0 comments on commit 13f63f2

Please sign in to comment.