#!/bin/bash

rm lat_asm.o lat
nasm -f elf64 lat_asm.s -o lat_asm.o
gcc -g lat_asm.o lat.c -O6 -lm -o lat
