summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorczjstmax <jstmaxlol@disroot.org>2026-05-06 17:00:31 +0200
committerczjstmax <jstmaxlol@disroot.org>2026-05-06 17:00:31 +0200
commita95060097772b17fb6996b6439a7e5da8b662bc3 (patch)
treef6436304262a831a764b7ee040000b8436fc7048 /build.sh
parentb20ade4b0c34af44652f38d33dafd27dfd1fd32e (diff)
removed old build script, added proper Makefile, updated REDAME
Signed-off-by: czjstmax <jstmaxlol@disroot.org>
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/build.sh b/build.sh
deleted file mode 100755
index 7e30d61..0000000
--- a/build.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env bash
-
-# compile g
-if gcc g.c -o g -O1 -Wall -Wextra -pedantic; then
- # move to PATH
- if sudo cp ./g /usr/bin/g; then
- # remove binary from local repo
- if rm ./g; then
- # status message
- printf ":: done ♥\n"
- else
- # or kill myself
- printf ":: couldnt remove binary from local repo, fuck you ♥\n"
- fi
- else
- # or kill yourself
- printf ":: couldnt copy to PATH, fuck you ♥\n"
- fi
-else
-# or kill ourselves
- printf ":: couldnt compile, fuck you ♥\n"
-fi
-