fix: clean server files befure build
This commit is contained in:
parent
c1399f5107
commit
f42dce9147
1 changed files with 7 additions and 0 deletions
|
@ -11,9 +11,16 @@ all: check-style test dist
|
||||||
manifest-check:
|
manifest-check:
|
||||||
pluginctl manifest check
|
pluginctl manifest check
|
||||||
|
|
||||||
|
## Cleans the server build artifacts.
|
||||||
|
.PHONY: clean-server
|
||||||
|
clean-server:
|
||||||
|
ifneq ($(HAS_SERVER),)
|
||||||
|
rm -rf server/dist
|
||||||
|
endif
|
||||||
|
|
||||||
## Builds the server, if it exists, for all supported architectures, unless MM_SERVICESETTINGS_ENABLEDEVELOPER is set.
|
## Builds the server, if it exists, for all supported architectures, unless MM_SERVICESETTINGS_ENABLEDEVELOPER is set.
|
||||||
.PHONY: server
|
.PHONY: server
|
||||||
|
server: clean-server
|
||||||
server:
|
server:
|
||||||
ifneq ($(HAS_SERVER),)
|
ifneq ($(HAS_SERVER),)
|
||||||
ifneq ($(MM_DEBUG),)
|
ifneq ($(MM_DEBUG),)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue