unicorn/regress/Makefile
2015-08-24 17:07:33 +02:00

11 lines
132 B
Makefile

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