From da00ab1b6643fdeee3cbf4f1d0f52c45e0d0e274 Mon Sep 17 00:00:00 2001 From: Stein Ivar Berghei Date: Mon, 21 Nov 2022 09:09:01 +0100 Subject: [PATCH] Fix default target --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 14cd55f..48a9012 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,8 @@ +.DEFAULT_GOAL := build APPLICATION_NAME ?= dndmusicbot CURRENT_UID := $(shell id -u) BIN := src/node_modules/.bin -default: build - PHONY: js image build js: src/public/script.js @@ -24,4 +23,4 @@ src/public/script.js: src/script.js src/yarn.lock $(APPLICATION_NAME): *.go ffmpeg/*.go speaker/*.go @go build -build: image js $(APPLICATION_NAME) \ No newline at end of file +build: image js $(APPLICATION_NAME)