mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 12:58:09 +00:00
14 lines
143 B
Makefile
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 $@ $^
|