unicorn/test/unit/Makefile

14 lines
143 B
Makefile
Raw Normal View History

2015-09-04 01:52:41 +00:00
CFLAGS += -lcmocka -lunicorn
ALL_TESTS = test_x86
all: ${ALL_TESTS}
clean:
rm ${ALL_TESTS}
test_x86: test_x86.c
gcc ${CFLAGS} -o $@ $^