aboutsummaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
Diffstat (limited to 'make')
-rwxr-xr-xmake19
1 files changed, 0 insertions, 19 deletions
diff --git a/make b/make
deleted file mode 100755
index 48c5dcc..0000000
--- a/make
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-DEBUG=""
-LIB=""
-
-[ ! -d "bin" ] && mkdir bin
-
-while getopts "d" opt; do
- case "$opt" in
- d) DEBUG="-Wall -fsanitize=address -g"
- ;;
- esac
-done
-
-shift $((OPTIND-1))
-[ "${1:-}" = "--" ] && shift
-
-printf "\n\nmaking project\n"
-clang -o bin/shell src/main.c $LIB -lm $DEBUG