Reflect listing provider in Makefile

dev
gravel 2 years ago
parent 2953d022e4
commit aea74ba7b9
Signed by: gravel
GPG Key ID: C0538F3C906B308F

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

Loading…
Cancel
Save