mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-27 15:10:53 +00:00
11 lines
118 B
Makefile
11 lines
118 B
Makefile
all:
|
|
gcc -I../../libr/include bin.c
|
|
./a.out
|
|
|
|
asm:
|
|
gcc -ggdb -g main.c
|
|
./a.out "mov r3,r4"
|
|
|
|
clean:
|
|
-rm -rf a.out*
|