1 2 3 4 5 6
SRC = sort.asm OBJ = sort.o all: @nasm -f elf64 -o $(OBJ) $(SRC) @gcc -no-pie -o sort $(OBJ)