mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-05 20:50:06 +00:00
c5e588e6e5
- Previous commits has been reported in the ChangeLog file - hg log has been lost (moved inside ChangeLog) - Old radare1 repository has removed all the libr
14 lines
232 B
Makefile
14 lines
232 B
Makefile
all: test rax2 ralloc
|
|
|
|
ralloc:
|
|
${CC} -O2 -g -I ../../include ralloc.c ../*.o -o ralloc
|
|
|
|
test:
|
|
${CC} -g -I ../../include test.c ../*.o -o test
|
|
|
|
rax2:
|
|
${CC} -g -I ../../include rax2.c ../*.o -o rax2
|
|
|
|
clean:
|
|
rm -f calc rax2 ralloc
|