unicorn/regress/Makefile

14 lines
179 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-24 11:00:54 +00:00
all: $(TESTS)
clean:
rm -f $(TESTS)
.PHONY: all clean