#!/bin/bash

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