🔧 Add makefile

This commit is contained in:
2023-05-09 21:27:37 +02:00
parent 4a0e59dd9a
commit f8649e0444

9
Makefile Normal file
View File

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