unicorn/regress/Makefile

12 lines
140 B
Makefile

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