diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-04-14 05:02:38 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-04-14 05:02:38 +0000 |
commit | 248d296234dc7ce76294c677bf2ca5e76c2f50d1 (patch) | |
tree | 5a38d5a5eb4cd6075e10de1583fde289c144cc91 /wk5/pset/speller/Makefile | |
parent | ba93a5dca5f93fe7b5761c251037d4f1860f9a43 (diff) |
Sat, Apr 13, 2024, 10:02 PM -07:00
Diffstat (limited to 'wk5/pset/speller/Makefile')
-rw-r--r-- | wk5/pset/speller/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wk5/pset/speller/Makefile b/wk5/pset/speller/Makefile new file mode 100644 index 0000000..cec61f0 --- /dev/null +++ b/wk5/pset/speller/Makefile @@ -0,0 +1,4 @@ +speller: + clang -ggdb3 -gdwarf-4 -O0 -Qunused-arguments -std=c11 -Wall -Werror -Wextra -Wno-gnu-folding-constant -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wshadow -c -o speller.o speller.c + clang -ggdb3 -gdwarf-4 -O0 -Qunused-arguments -std=c11 -Wall -Werror -Wextra -Wno-gnu-folding-constant -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wshadow -c -o dictionary.o dictionary.c + clang -ggdb3 -gdwarf-4 -O0 -Qunused-arguments -std=c11 -Wall -Werror -Wextra -Wno-gnu-folding-constant -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wshadow -o speller speller.o dictionary.o -lm |