unicorn/tests/unit/Makefile

32 lines
478 B
Makefile
Raw Normal View History

2015-09-04 03:52:41 +02:00
2015-09-07 22:07:48 +02:00
CFLAGS += -Wall -Werror -Wno-unused-function -g
2015-09-07 21:05:55 +02:00
CFLAGS += -L ../../
CFLAGS += -lcmocka -lunicorn
CFLAGS += -I ../../include
2015-09-04 03:52:41 +02:00
ALL_TESTS = test_sanity test_x86 test_mem_map
2015-09-04 03:52:41 +02:00
2015-09-07 21:05:55 +02:00
.PHONY: all
2015-09-04 03:52:41 +02:00
all: ${ALL_TESTS}
2015-09-07 21:05:55 +02:00
.PHONY: clean
2015-09-04 03:52:41 +02:00
clean:
rm -rf ${ALL_TESTS}
2015-09-04 03:52:41 +02:00
2015-09-07 21:05:55 +02:00
.PHONY: test
test: export LD_LIBRARY_PATH=../../
test: ${ALL_TESTS}
./test_sanity
2015-09-07 22:07:48 +02:00
./test_x86
./test_mem_map
2015-09-07 21:05:55 +02:00
test_sanity: test_sanity.c
2015-09-04 03:52:41 +02:00
test_x86: test_x86.c
2015-09-07 21:05:55 +02:00
test_mem_map: test_mem_map.c
${ALL_TESTS}:
2015-09-04 03:52:41 +02:00
gcc ${CFLAGS} -o $@ $^
2015-09-07 21:05:55 +02:00