Makefile: update makefile

This commit is contained in:
Jon 2023-04-27 02:45:52 +01:00
parent fa62359e34
commit 3d9f04a083

View File

@ -1,11 +1,18 @@
all: | build
prod: | build validate
all: build
build: data/songs.json
prod: build validate
build:
# TODO: Move to dist/
lib_js = $(shell find lib -name '*.js' -type f)
data/songs.json: data/songs.js $(lib_js)
node lib/build.js
validate:
ajv -s data/schema.yaml -d data/songs.json --strict=false
links:
lib/sh/getlatest.sh $(i)
dbg:
node -e 'console.debug(require("util").inspect(require("./data/songs.js"), { colors: true, depth: Infinity, maxArrayLength: Infinity }))'