mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 16:28:16 +00:00
16 lines
257 B
Makefile
16 lines
257 B
Makefile
CFLAGS += -I../include
|
|
LDFLAGS = -L.. -lunicorn
|
|
|
|
TESTS = map_crash map_write
|
|
TESTS += sigill sigill2
|
|
TESTS += block_test
|
|
TESTS += ro_mem_test nr_mem_test
|
|
TESTS += timeout_segfault
|
|
TESTS += rep_movsb
|
|
|
|
all: $(TESTS)
|
|
|
|
clean:
|
|
rm -f $(TESTS)
|
|
|
|
.PHONY: all clean
|