mirror of
https://github.com/Vita3K/unicorn.git
synced 2024-11-23 13:29:40 +00:00
Updated Makefile
This commit is contained in:
parent
d8e1c9b557
commit
4a67727f81
@ -1,9 +1,10 @@
|
|||||||
|
|
||||||
CFLAGS += -Wall -Werror -Wno-unused-function -g
|
CFLAGS += -Wall -Werror -Wno-unused-function -g
|
||||||
CFLAGS += -L ../../
|
CFLAGS += -L ../../
|
||||||
CFLAGS += -lcmocka -lunicorn
|
|
||||||
CFLAGS += -I ../../include
|
CFLAGS += -I ../../include
|
||||||
|
|
||||||
|
LIBS += -lcmocka -lunicorn
|
||||||
|
|
||||||
ifeq ($(UNICORN_ASAN),yes)
|
ifeq ($(UNICORN_ASAN),yes)
|
||||||
CC = clang -fsanitize=address -fno-omit-frame-pointer
|
CC = clang -fsanitize=address -fno-omit-frame-pointer
|
||||||
CXX = clang++ -fsanitize=address -fno-omit-frame-pointer
|
CXX = clang++ -fsanitize=address -fno-omit-frame-pointer
|
||||||
@ -13,7 +14,7 @@ endif
|
|||||||
|
|
||||||
ALL_TESTS = test_sanity test_x86 test_mem_map test_mem_high test_mem_map_ptr \
|
ALL_TESTS = test_sanity test_x86 test_mem_map test_mem_high test_mem_map_ptr \
|
||||||
test_tb_x86 test_multihook test_pc_change test_x86_soft_paging \
|
test_tb_x86 test_multihook test_pc_change test_x86_soft_paging \
|
||||||
test_hookcounts test_hang test_x86_shl_enter_leave
|
test_hookcounts test_hang test_x86_shl_enter_leave test_x86_rip_bug
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
all: ${ALL_TESTS}
|
all: ${ALL_TESTS}
|
||||||
@ -37,6 +38,7 @@ test: ${ALL_TESTS}
|
|||||||
./test_hookcounts
|
./test_hookcounts
|
||||||
./test_hang
|
./test_hang
|
||||||
./test_x86_shl_enter_leave
|
./test_x86_shl_enter_leave
|
||||||
|
./test_x86_rip_bug
|
||||||
|
|
||||||
test_sanity: test_sanity.c
|
test_sanity: test_sanity.c
|
||||||
test_x86: test_x86.c
|
test_x86: test_x86.c
|
||||||
@ -50,6 +52,7 @@ test_x86_soft_paging: test_x86_soft_paging.c
|
|||||||
test_hookcounts: test_hookcounts.c
|
test_hookcounts: test_hookcounts.c
|
||||||
test_hang: test_hang.c
|
test_hang: test_hang.c
|
||||||
test_x86_shl_enter_leave: test_x86_shl_enter_leave.c
|
test_x86_shl_enter_leave: test_x86_shl_enter_leave.c
|
||||||
|
test_x86_rip_bug: test_x86_rip_bug.c
|
||||||
|
|
||||||
${ALL_TESTS}:
|
${ALL_TESTS}:
|
||||||
${CC} ${CFLAGS} -o $@ $^
|
${CC} ${CFLAGS} -o $@ $^ ${LIBS}
|
||||||
|
Loading…
Reference in New Issue
Block a user