cleanup makefile
This commit is contained in:
@@ -1,24 +1,26 @@
|
||||
.PHONY: build build-web build-wfa-js clean clean-wfa-js ensure-dist
|
||||
.PHONY: build build-web build-wfa clean clean-wfa clean-web
|
||||
|
||||
build: clean ensure-dist build-web build-wfa-js
|
||||
build: clean ensure-dist build-wfa build-web
|
||||
@echo "======================== Building Binary ======================="
|
||||
# resolve symbolic links in web by copying it into dist/web/
|
||||
CGO_ENABLED=0 go build -tags release -ldflags="-s -w" -v -o dist/ .
|
||||
|
||||
build-web: ensure-dist
|
||||
cp -rL web/ dist/web/
|
||||
|
||||
build-wfa-js: ensure-dist
|
||||
$(MAKE) -C WFA-JS
|
||||
cp -f WFA-JS/dist/* web/modules
|
||||
|
||||
clean: clean-wfa-js
|
||||
clean: clean-wfa clean-web
|
||||
@echo "======================== Cleaning Project ======================"
|
||||
go clean
|
||||
rm -rf dist/*
|
||||
|
||||
clean-wfa-js:
|
||||
$(MAKE) clean -C WFA-JS
|
||||
|
||||
ensure-dist:
|
||||
mkdir -p dist
|
||||
mkdir -p dist
|
||||
|
||||
build-web: ensure-dist
|
||||
cp -rL web/ dist/web/
|
||||
|
||||
clean-web:
|
||||
|
||||
build-wfa:
|
||||
$(MAKE) -C WFA-JS
|
||||
cp -f WFA-JS/dist/* web/modules
|
||||
|
||||
clean-wfa:
|
||||
$(MAKE) clean -C WFA-JS
|
||||
Binary file not shown.
Reference in New Issue
Block a user