mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-05 20:50:06 +00:00
ab1c417abb
- Fix some function signatures - Disable CPP macros by default - Added a separate iterate example in util/t/iter.c * Initial non-working integration with Vala generics in r_util.vapi - Vala does not yet supports non-gobject generic classes/structs
18 lines
338 B
Makefile
18 lines
338 B
Makefile
# TODO: append EXECEXT to BINS
|
|
all: test rax2 ralloc iter
|
|
|
|
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
|
|
|
|
iter:
|
|
${CC} iter.c `pkg-config r_util --cflags --libs` -o iter
|
|
|
|
clean:
|
|
rm -f calc rax2 ralloc test
|