1
0
Fork 0
mirror of https://github.com/yuzu-emu/unicorn.git synced 2025-01-14 02:05:39 +00:00
unicorn/regress/Makefile
2015-08-26 21:38:24 -07:00

15 lines
200 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
all: $(TESTS)
clean:
rm -f $(TESTS)
.PHONY: all clean