aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: e7e2ee3b17b9611d6c6ff207d3baed18c643b1c8 (plain) (blame)
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)