Update dependencies

This commit is contained in:
Jacob Gunther
2023-04-16 16:57:10 -05:00
parent eaa1492baa
commit 2ea126daed
3 changed files with 4 additions and 8 deletions

View File

@@ -3,9 +3,7 @@ BINARY := bin/main
SOURCES := $(wildcard src/*.go)
# Build for the current platform
build: $(BINARY)
$(BINARY): $(SOURCES)
build:
go build -o $(BINARY) $(SOURCES)
# Build for Linux
@@ -27,10 +25,6 @@ build-cross: $(BINARY)
run: build
./$(BINARY)
# Flush cache
flush-cache: build
./$(BINARY) --flush-cache
# Clean up generated files
.PHONY: clean
clean: