Files
Otter/Makefile
2023-05-09 21:27:37 +02:00

10 lines
131 B
Makefile

clean:
@echo "Cleaning..."
@rm -rf build
compile:
@echo "Compiling..."
@cd src && \
go build -o ../build/otter && \
cd ..