summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorHao Liu <haoli@redhat.com>2023-03-15 21:14:10 +0100
committerHao Liu <haoli@redhat.com>2023-03-17 04:37:30 +0100
commitedbed92c95aa3dee00d9ff49d52068e46a643e13 (patch)
tree755b01a4b8ba67554d07a8daaa712e5ff7415097 /Makefile
parentthrow 404 when UI_NEXT false (diff)
downloadawx-edbed92c95aa3dee00d9ff49d52068e46a643e13.tar.xz
awx-edbed92c95aa3dee00d9ff49d52068e46a643e13.zip
Refine UI_NEXT Makefile and update README
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f4404e8809..9f428ce6d0 100644
--- a/Makefile
+++ b/Makefile
@@ -451,7 +451,7 @@ HEADLESS ?= no
ifeq ($(HEADLESS), yes)
dist/$(SDIST_TAR_FILE):
else
-dist/$(SDIST_TAR_FILE): $(UI_BUILD_FLAG_FILE) awx/ui_next/build
+dist/$(SDIST_TAR_FILE): $(UI_BUILD_FLAG_FILE) ui-next
endif
$(PYTHON) -m build -s
ln -sf $(SDIST_TAR_FILE) dist/awx.tar.gz
@@ -592,7 +592,7 @@ awx-kube-dev-build: Dockerfile.kube-dev
-t $(DEV_DOCKER_TAG_BASE)/awx_kube_devel:$(COMPOSE_TAG) .
## Build awx image for deployment on Kubernetes environment.
-awx-kube-build: Dockerfile awx/ui_next/src
+awx-kube-build: Dockerfile
DOCKER_BUILDKIT=1 docker build -f Dockerfile \
--build-arg VERSION=$(VERSION) \
--build-arg SETUPTOOLS_SCM_PRETEND_VERSION=$(VERSION) \
@@ -659,6 +659,9 @@ help/generate:
help/%:
@make -s help MAKEFILE_LIST="$*/Makefile"
+help/ui-next:
+ @make -s help MAKEFILE_LIST="awx/ui_next/Makefile"
+
## Display help for a specific target folder
help/%/aliases:
@make -s help/all MAKEFILE_LIST="$*/Makefile.aliases"