Add tests to Makefile
parent
1d48e1e5fb
commit
de699154d4
@ -1,32 +1,71 @@
|
|||||||
# First goal is always run with just `make`
|
port = 8080
|
||||||
all:
|
output = output
|
||||||
/bin/php php/update-listing.php
|
|
||||||
|
|
||||||
data:
|
# First goal is the default with `make`.
|
||||||
|
|
||||||
|
# List make scripts.
|
||||||
|
list:
|
||||||
|
grep "^[^[:space:]]*:" Makefile --before-context=1 --group-separator=""
|
||||||
|
|
||||||
|
## Using make dependencies is duplicating behaviour but reads better.
|
||||||
|
# /bin/php php/update-listing.php
|
||||||
|
# Refresh listing and generate HTML.
|
||||||
|
all: fetch html
|
||||||
|
|
||||||
|
# Fetch room listing.
|
||||||
|
fetch:
|
||||||
/bin/php php/fetch-servers.php
|
/bin/php php/fetch-servers.php
|
||||||
|
|
||||||
|
# Generate HTML from data.
|
||||||
html:
|
html:
|
||||||
/bin/php php/generate-html.php
|
/bin/php php/generate-html.php
|
||||||
|
|
||||||
dev:
|
# Last item run in foreground to receive interrupts.
|
||||||
xdg-open http://localhost:8080
|
|
||||||
|
# Serve a local copy which responds to file changes.
|
||||||
|
dev: open
|
||||||
make server &
|
make server &
|
||||||
make watchdog
|
make watchdog
|
||||||
|
|
||||||
lan-dev:
|
# Serve a local copy on LAN which responds to file changes.
|
||||||
|
lan-dev: open
|
||||||
ip addr | fgrep -e ' 192.' -e ' 10.'
|
ip addr | fgrep -e ' 192.' -e ' 10.'
|
||||||
xdg-open http://localhost:8080
|
|
||||||
make lan-server &
|
make lan-server &
|
||||||
make watchdog
|
make watchdog
|
||||||
|
|
||||||
|
# Serve a local copy.
|
||||||
server:
|
server:
|
||||||
/bin/php -S localhost:8080 -t output
|
/bin/php -S localhost:$(port) -t $(output)
|
||||||
|
|
||||||
|
# Serve a local copy on all interfaces.
|
||||||
lan-server:
|
lan-server:
|
||||||
/bin/php -S 0.0.0.0:8080 -t output
|
/bin/php -S 0.0.0.0:$(port) -t $(output)
|
||||||
|
|
||||||
|
# Open locally served page in browser.
|
||||||
|
open:
|
||||||
|
xdg-open http://localhost:$(port) >/dev/null 2>/dev/null & disown
|
||||||
|
|
||||||
# Update html on file change
|
# Update HTML on file change. Doesn't check for new files.
|
||||||
# Doesn't check for new files
|
|
||||||
watchdog:
|
watchdog:
|
||||||
find . | entr -n -s "make html"
|
find . | entr -n -s "make html"
|
||||||
|
|
||||||
|
# Remove artefacts
|
||||||
|
clean:
|
||||||
|
rm -r cache
|
||||||
|
rm -r output/*.html
|
||||||
|
|
||||||
|
# Build everything from scratch and test functionality.
|
||||||
|
test: clean all open server
|
||||||
|
|
||||||
|
# Build everything from scratch and test functionality on LAN.
|
||||||
|
test-lan: clean all open lan-server
|
||||||
|
|
||||||
|
# -- Aliases --
|
||||||
|
serve: server
|
||||||
|
|
||||||
|
lan-serve: lan-server
|
||||||
|
|
||||||
|
data: fetch
|
||||||
|
|
||||||
|
watch: watchdog
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue