unicorn/regress/Makefile
2015-08-24 18:36:58 -07:00

11 lines
151 B
Makefile
Executable file

CFLAGS += -I../include
LDFLAGS = -L.. -lunicorn
TESTS = map_crash sigill sigill2 block_test
all: $(TESTS)
clean:
rm -f $(TESTS)
.PHONY: all clean