chore: streamline Makefile targets

This commit is contained in:
Settel 2022-03-14 22:42:07 +01:00
parent 98c782627e
commit 8e1878859d
2 changed files with 6 additions and 2 deletions

View File

@ -36,8 +36,8 @@ build:
$(MAKE) -C server build
$(MAKE) -C docker build save
docker:
$(MAKE) -C docker
docker-run:
$(MAKE) -C docker run
run-standalone:
$(MAKE) -C server run-standalone

View File

@ -1,3 +1,7 @@
info:
@echo available targets:
@perl -ne 'm/^([\w\-]+):/ && print(" $$1\n");' Makefile
build:
cp ../server/knowyt files/
podman build --tag knowyt:latest .