12 lines
294 B
Makefile
12 lines
294 B
Makefile
|
all: | build
|
||
|
prod: | build validate
|
||
|
|
||
|
build:
|
||
|
node lib/build.js
|
||
|
validate:
|
||
|
ajv -s data/schema.yaml -d data/songs.json
|
||
|
links:
|
||
|
lib/sh/getlatest.sh $(i)
|
||
|
dbg:
|
||
|
node -e 'console.debug(require("util").inspect(require("./data/songs.js"), { colors: true, depth: Infinity, maxArrayLength: Infinity }))'
|