mirror of
https://github.com/DazzleCatDuo/X86-SOFTWARE-REVERSE-ENGINEERING-CRACKING-AND-COUNTER-MEASURES.git
synced 2025-01-18 13:28:35 +01:00
10 lines
173 B
Makefile
10 lines
173 B
Makefile
all: helloworld.o
|
|
|
|
helloworld.o: helloworld.asm
|
|
nasm -f elf32 -g helloworld.asm
|
|
ld -melf_i386 -g helloworld.o -o helloworld.out
|
|
|
|
|
|
clean:
|
|
rm helloworld.o helloworld.out
|