mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 06:48:18 +00:00
14 lines
212 B
Makefile
Executable file
14 lines
212 B
Makefile
Executable file
CFLAGS += -I../include
|
|
LDFLAGS = -L.. -lunicorn
|
|
|
|
TESTS = map_crash map_write
|
|
TESTS += sigill sigill2
|
|
TESTS += block_test
|
|
TESTS += ro_mem_test nr_mem_test
|
|
|
|
all: $(TESTS)
|
|
|
|
clean:
|
|
rm -f $(TESTS)
|
|
|
|
.PHONY: all clean
|