summaryrefslogtreecommitdiff
path: root/mkdeps.sh
blob: 68f38a9221318e5959422e32b0aea40d923dc054 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -eu

export LANG=POSIX.UTF-8

varlist() {
	printf '%s = \\\n' "$1"
	sed 's|^\(.*\)$|\t\1 \\|'
	printf '\n'
}

find src/sql/migrations/*.sql          | sort | varlist 'sources.sql'
find src/static/ -type f               | sort | varlist 'sources.static'