summaryrefslogtreecommitdiff
path: root/compile
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2024-08-31 23:33:25 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2024-08-31 23:33:25 +0330
commitbcde4724cdaa8becd27160d8e8733919ed726366 (patch)
treeafbce2f02ec19c6e80d183c794a4a45d607ae499 /compile
parent108a4a0c2c14d70c366bbfaa65b7287824fb33da (diff)
some formatting and renaming
Diffstat (limited to 'compile')
-rwxr-xr-xcompile12
1 files changed, 0 insertions, 12 deletions
diff --git a/compile b/compile
deleted file mode 100755
index 1b54aae..0000000
--- a/compile
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-project_name="atui"
-
-if [ ! -d build ]; then
- if [ $(mkdir build) ]; then # if error
- echo "cannot make 'build' dir"
- exit
- fi
-fi
-
-gcc -Wall -Wextra -O3 -std=gnu23 src/main.c src/ui/tui.c -o "build/$project_name"