pedini.dev/makefile

17 lines
243 B
Makefile
Raw Normal View History

2024-04-18 05:59:54 +00:00
#!make
2024-08-21 20:01:24 +00:00
include .vars
2024-04-18 05:59:54 +00:00
default: build
prep:
git submodule foreach --recursive bash -c "git checkout \$$(git remote show origin | grep HEAD | sed 's/.*\: //'); git pull"
build: prep
2024-08-21 19:49:00 +00:00
./version.sh
2024-04-18 05:59:54 +00:00
2024-08-21 20:01:24 +00:00
deploy:
./deploy.sh
run: prep
2024-04-18 05:59:54 +00:00
hugo server