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