Skip to content

Commit c5c8986

Browse files
committed
Fix variable usage and add TypeScript variables
1 parent 5f5f5b1 commit c5c8986

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ EXAMPLES_FIXTURES_FOLDER ?= $(EXAMPLES_FOLDER)/fixtures
114114
BENCHMARKS_FOLDER ?= benchmark
115115

116116
# Define the folder name convention for benchmark fixtures:
117-
BENCHMARKS_FIXTURES_FOLDER ?= (BENCHMARKS_FOLDER)/fixtures
117+
BENCHMARKS_FIXTURES_FOLDER ?= $(BENCHMARKS_FOLDER)/fixtures
118118

119119
# Define the folder name convention for executables:
120120
BIN_FOLDER ?= bin
@@ -140,6 +140,9 @@ SCRIPTS_FOLDER ?= scripts
140140
# Define the folder name convention for temporary files:
141141
TMP_FOLDER ?= tmp
142142

143+
# Define the folder name convention for type definition files:
144+
TYPES_FOLDER ?= types
145+
143146
# Define filename extension conventions (keep in alphabetical order):
144147
AWK_FILENAME_EXT ?= awk
145148
BASH_FILENAME_EXT ?= sh
@@ -168,6 +171,8 @@ R_FILENAME_EXT ?= R
168171
SHELL_FILENAME_EXT ?= sh
169172
SVG_FILENAME_EXT ?= svg
170173
TEXT_FILENAME_EXT ?= txt
174+
TYPESCRIPT_FILENAME_EXT ?= ts
175+
TYPESCRIPT_DEFINITION_FILENAME_EXT ?= d.$(TYPESCRIPT_FILENAME_EXT)
171176
WASM_FILENAME_EXT ?= wasm
172177
WAT_FILENAME_EXT ?= wat
173178
YAML_FILENAME_EXT ?= yml

0 commit comments

Comments
 (0)