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

12 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