APP=gen-expr

$(APP): gen-expr.cc
	g++ -O2 -Wall -o $@ $< -g

.PHONY: clean
clean:
	-rm -f $(APP) .code.c .expr
