radare2/libr/util/t/Makefile
pancake ab1c417abb * Some more work for the r_iter API
- 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
2009-08-21 19:09:48 +00:00

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