rizin/libr/util/t/Makefile
Riccardo Schirone 49ebf0942c libr/util: reimplement graph api
libr/util/t/graph: add test
2015-06-11 22:53:48 +02:00

36 lines
479 B
Makefile

include ../../config.mk
BINDEPS=r_util
LDFLAGS+=-lr_util -L..
BINS=test
BINS+=set0
BINS+=sparse
BINS+=rax2
#BINS+=ralloc
BINS+=array
BINS+=pool
BINS+=argv
BINS+=test_sys
BINS+=test_str
BINS+=test_file_slurp_hexpairs
BINS+=test_cmd_str
BINS+=test_stack
BINS+=test_queue
BINS+=test_tree
BINS+=test_graph
all: ${BINS}
${BINS}: $(addsuffix .o,$(BINS))
$(CC) $(LDFLAGS) -o $@ $@.o
myclean:
rm -f ${BINS} *.o
clean:: myclean
.PHONY: myclean clean all
include ../../rules.mk