Makefile 126 Bytes
SOURCES := $(wildcard *.c)

eval: $(SOURCES)
	clang $^ -g -fsanitize=address,undefined -lreadline -o eval

clean:
	rm -f eval