unicorn/regress/Makefile

11 lines
151 B
Makefile

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