Reflect listing provider in Makefile

dev
gravel 1 year ago
parent 2953d022e4
commit aea74ba7b9
Signed by: gravel
GPG Key ID: C0538F3C906B308F

@ -14,6 +14,9 @@ list:
# Refresh listing and generate HTML.
sco: fetch html
# Refresh listing, generate HTML and update listing provider.
all: fetch html listing
# Fetch room listing.
fetch:
/bin/php php/fetch-servers.php $(FLAGS)
@ -64,19 +67,19 @@ clean:
# Build everything from scratch and test functionality.
test: FLAGS = --verbose
test: clean sco open server
test: clean all open server
# Build everything from scratch and test functionality on LAN.
test-lan: FLAGS = --verbose
test-lan: clean sco open lan-server
test-lan: clean all open lan-server
# Run basic tests without launching site in browser.
test-noninteractive: FLAGS = --verbose
test-noninteractive: clean sco
test-noninteractive: clean all
# Run Continuous Integration tests.
test-ci: FLAGS = --verbose --fast --no-color
test-ci: clean sco
test-ci: clean all
# -- Aliases --
serve: server

Loading…
Cancel
Save