mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-02 18:27:18 +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*
|