#!/bin/bash
file=$1
nasm -f elf64 $file.asm -o $file.obj -I ./include
gcc $file.obj -o $file -L/usr/lib/ -lX11
rm $file.obj