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