unicorn/regress/Makefile

15 lines
212 B
Makefile
Raw Normal View History

CFLAGS += -I../include
LDFLAGS = -L.. -lunicorn
2015-08-24 11:00:54 +00:00
2015-08-26 22:19:12 +00:00
TESTS = map_crash map_write
TESTS += sigill sigill2
TESTS += block_test
2015-08-28 10:42:25 +00:00
TESTS += ro_mem_test nr_mem_test
2015-08-24 11:00:54 +00:00
all: $(TESTS)
clean:
rm -f $(TESTS)
.PHONY: all clean