aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: 04b17c86be396fff52a50a24125877c4f77fd3b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
all: asm

asm:
	@nasm -O3 -f elf64 -o sort.o sort.asm
	@nasm -O3 -f elf64 -o data.o data.asm
	@gcc -O3 -no-pie -o sort data.o sort.o

c:
	@nasm -O3 -f elf64 -o data.o data.asm
	@gcc -O3 -no-pie -c -o csort.o benchmark/sort.c -Wno-pointer-to-int-cast
	@gcc -O3 -no-pie -o csort data.o csort.o