unicorn/tests/unit/Makefile

40 lines
802 B
Makefile
Raw Normal View History

2015-09-04 01:52:41 +00:00
2015-09-07 20:07:48 +00:00
CFLAGS += -Wall -Werror -Wno-unused-function -g
2015-09-07 19:05:55 +00:00
CFLAGS += -L ../../
CFLAGS += -lcmocka -lunicorn
CFLAGS += -I ../../include
2015-09-04 01:52:41 +00:00
ALL_TESTS = test_sanity test_x86 test_mem_map test_mem_high test_mem_map_ptr \
test_tb_x86 test_multihook test_pc_change
2015-09-04 01:52:41 +00:00
2015-09-07 19:05:55 +00:00
.PHONY: all
2015-09-04 01:52:41 +00:00
all: ${ALL_TESTS}
2015-09-07 19:05:55 +00:00
.PHONY: clean
2015-09-04 01:52:41 +00:00
clean:
rm -rf ${ALL_TESTS}
2015-09-04 01:52:41 +00:00
2015-09-07 19:05:55 +00:00
.PHONY: test
test: export LD_LIBRARY_PATH=../../
test: ${ALL_TESTS}
./test_sanity
2015-09-07 20:07:48 +00:00
./test_x86
./test_mem_map
./test_mem_map_ptr
./test_mem_high
./test_tb_x86
./test_multihook
./test_pc_change
2015-09-07 19:05:55 +00:00
test_sanity: test_sanity.c
2015-09-04 01:52:41 +00:00
test_x86: test_x86.c
2015-09-07 19:05:55 +00:00
test_mem_map: test_mem_map.c
test_mem_map_ptr: test_mem_map_ptr.c
2015-12-08 17:23:06 +00:00
test_mem_high: test_mem_high.c
test_tb_x86: test_tb_x86.c
test_multihook: test_multihook.c
test_pc_change: test_pc_change.c
2015-09-07 19:05:55 +00:00
${ALL_TESTS}:
2015-12-30 00:50:58 +00:00
${CC} ${CFLAGS} -o $@ $^