mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 08:34:42 +08:00
15 lines
271 B
Makefile
15 lines
271 B
Makefile
.PHONY: all
|
|
all: helloasm
|
|
|
|
helloasm.o: helloasm.asm
|
|
nasm -f elf -g -F dwarf -o helloasm.o helloasm.asm
|
|
|
|
helloasm: helloasm.o
|
|
ld -m elf_i386 -o helloasm helloasm.o
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f helloasm helloasm.o
|
|
|
|
# nasm -f elf32 -g -F stabs -o helloasm.o helloasm.asm
|