summaryrefslogtreecommitdiff
path: root/build/compile.sh
blob: efd89624c438016f998b4b800ea1957e9340e91c (plain)
1
2
3
4
5
6
7
#! /bin/sh
IN=$1
FILE=$(basename $1)
gcc -masm=intel -nostartfiles -nostdlib -ffreestanding "$IN".c -o "tmp/$FILE".o
objcopy -S -R .note.gnu.build-id -R .comment -O binary "tmp/$FILE".o "bim/$FILE".bin
rm "$IN".o