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