1CXX=hare 2SRC=src/*.ha 3BUILD=build 4 5build: src/main.ha 6 $(CXX) build -lm -lraylib -o $(BUILD)/a.out $(SRC) 7 8run: build 9 ./$(BUILD)/a.out 10 11process: process.txt ctohare.py 12 python ctohare.py | wl-copy 13 14.PHONY: run build process