-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·26 lines (17 loc) · 855 Bytes
/
Makefile
File metadata and controls
executable file
·26 lines (17 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Active Build Methods
lexer: ./src/* ./test/*
g++ -std=c++14 -Werror -Wuninitialized -g test/testLexerAndParser.cpp src/lexer.cpp src/parser.cpp src/scope.cpp src/memory_trees.cpp -o build/test
./build/test
million: ./src/* ./test/*
g++ -std=c++14 -Werror -Wuninitialized -g test/test_million_words.cpp src/memory_trees.cpp src/scope.cpp -o build/test
./build/test
#old Methods
memory: ./src/* ./test/*
g++ -std=c++14 -Werror -Wuninitialized -g test/test_memory_tree.cpp src/memory_trees.cpp src/scope.cpp -o build/test
./build/test
interp: ./src/* ./test/*
g++ -std=c++14 -Werror -Wuninitialized -g test/test_interpreter.cpp src/scope.cpp src/memory_trees.cpp -o build/test
./build/test
data: ./src/* ./test/*
g++ -std=c++14 -Werror -Wuninitialized -g test/test_data.cpp src/memory_trees.cpp src/scope.cpp -o build/test
./build/test