summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-08 20:53:20 +0100
committerxengineering <me@xengineering.eu>2023-02-08 21:01:27 +0100
commitf9a5140071703faf0c7515a05f52e69fdc1f11ba (patch)
treeee073f3c7fc1a6bbda1eee6e3bec076e73363740 /Makefile
parent9005de11ef8b7cf32cc8503e8b5f134eca47b4fb (diff)
downloadceres-f9a5140071703faf0c7515a05f52e69fdc1f11ba.tar
ceres-f9a5140071703faf0c7515a05f52e69fdc1f11ba.tar.zst
ceres-f9a5140071703faf0c7515a05f52e69fdc1f11ba.zip
Move all sources to package main
This project is not so big that it needs multiple packages.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 45f5d0b..1d1e261 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ PREFIX="/usr"
all:
mkdir -p build
- go build -o build/ceres main.go
+ go build -o build/ceres *.go
clean:
rm -rf build
@@ -26,4 +26,4 @@ install: all
install -Dm 644 sql/0002_migration.sql $(DESTDIR)$(PREFIX)/share/ceres/migrations/0002_migration.sql
debug:
- go run main.go -c config/debug.json
+ go run *.go -c config/debug.json