Make the Makefile functional

makefile
Stein Ivar Berghei 2022-11-21 08:30:02 +01:00
parent 27032d75a5
commit 87b76ecd8a
1 changed files with 20 additions and 8 deletions

View File

@ -1,15 +1,27 @@
APPLICATION_NAME ?= dndmusicbot
CURRENT_UID := $(shell id -u)
BIN := src/node_modules/.bin
default: build
image: Dockerfile
docker build -t dndmusicbot-js-build .
touch .jsimage
PHONY: js image build
web: src/script.js
docker run --user $(CURRENT_UID) -v $(CURDIR)/src:/app dndmusicbot-js-build install
docker run --user $(CURRENT_UID) -v $(CURDIR)/src:/app dndmusicbot-js-build build
js: src/public/script.js
build: *.go
go build
image: .jsimage
.jsimage: Dockerfile
@docker build -t dndmusicbot-js-build .
@touch .jsimage
src/yarn.lock: src/node_modules src/package.json
@docker run --rm --user $(CURRENT_UID) -v $(CURDIR)/src:/app dndmusicbot-js-build install --production=false --check-files
@touch -mr $(shell ls -Atd $? | head -1) $@
src/public/script.js: src/script.js src/yarn.lock
@docker run --user $(CURRENT_UID) -v $(CURDIR)/src:/app dndmusicbot-js-build build
$(APPLICATION_NAME): *.go ffmpeg/*.go speaker/*.go
@go build
build: image js $(APPLICATION_NAME)