Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ TOOL_ENV := $(APPS_BUILD)/.toolchain.env
JOBS ?= $(shell nproc 2>/dev/null || getconf _NPROCESSORS_ONLN || echo 4)

# -------- Phonies -------------------------------------------------------------
.PHONY: all preflight dirs print-config libtirpc gnulib zlib openssl merge-sysroot lmbench bash nginx coreutils clean clean-all
.PHONY: all preflight dirs print-config libtirpc gnulib zlib openssl merge-sysroot lmbench bash nginx coreutils test-nginx clean clean-all

all: preflight libtirpc gnulib merge-sysroot lmbench bash

Expand Down Expand Up @@ -159,6 +159,10 @@ nginx: merge-sysroot
. '$(TOOL_ENV)'
'$(APPS_ROOT)/nginx/compile_nginx.sh'

# ---------------- nginx test suite --------------------------------------------
test-nginx: nginx
'$(APPS_ROOT)/nginx/test_nginx.sh'

# ---------------- coreutils (WASM build) --------------------------------------
# Uses coreutils/compile_coreutils.sh and requires the merged sysroot.
coreutils: merge-sysroot
Expand Down
Loading