diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-02-09 18:05:28 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-02-09 18:05:28 +0100 |
| commit | 799d930c2540933c23a1b6ba28e8e5e4f3bccb64 (patch) | |
| tree | 7a714abcafc48060b832e7b33c64ab8e1b29a559 /smash/Makefile | |
| parent | 9153b4062c7b6db6119e035dc5e53184aac9fa3a (diff) | |
add variable system via env
Diffstat (limited to 'smash/Makefile')
| -rw-r--r-- | smash/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smash/Makefile b/smash/Makefile index 1d8e228..b8fb606 100644 --- a/smash/Makefile +++ b/smash/Makefile @@ -17,4 +17,4 @@ unit_test_exec: ./test all: - gcc main.c comment.c exec.c parser.c builtin.c ../lib/slib.a -static -nostdlib -fno-stack-protector -Wno-implicit-function-declaration -fno-builtin -o smash -DVARIABLES_UNIT_TEST -g + gcc main.c env.c comment.c exec.c parser.c builtin.c ../lib/slib.a -static -nostdlib -fno-stack-protector -Wno-implicit-function-declaration -fno-builtin -o smash -DVARIABLES_UNIT_TEST -g |