diff options
author | iximeow <me@iximeow.net> | 2015-03-25 23:29:29 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2015-09-28 03:36:16 -0700 |
commit | 93136af1a590a786cf6418bfea1b74d06830f211 (patch) | |
tree | 1fbbbd80c5f01a18518a0d118e6b83c923aadc37 /build/compile.sh | |
parent | fe8a45a19edcd6693b47cb7f034d400f0610332f (diff) |
.project and helpers
Diffstat (limited to 'build/compile.sh')
-rwxr-xr-x | build/compile.sh | 9 |
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 - |