unicorn/test/unit/Makefile
2015-09-20 21:13:22 -04:00

14 lines
143 B
Makefile

CFLAGS += -lcmocka -lunicorn
ALL_TESTS = test_x86
all: ${ALL_TESTS}
clean:
rm ${ALL_TESTS}
test_x86: test_x86.c
gcc ${CFLAGS} -o $@ $^