summaryrefslogtreecommitdiff
path: root/build/compile.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build/compile.sh')
-rwxr-xr-xbuild/compile.sh9
1 files changed, 0 insertions, 9 deletions
diff --git a/build/compile.sh b/build/compile.sh
deleted file mode 100755
index da75dec..0000000
--- a/build/compile.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#! /bin/sh
-INPATH=$1
-INFILE=$(basename $1)
-INFILENAME="${INFILE%.*}"
-INEXT="${INFILE##*.}"
-gcc -T linker.ld -m32 -nostartfiles -nostdlib -ffreestanding "$INPATH" -o "tmp/$INFILENAME".o
-objcopy -S -R .note.gnu.build-id -R .comment -O binary "tmp/$INFILENAME".o "bin/$INFILENAME".bin
-rm "tmp/$INFILENAME".o
-