pedini.dev/makefile

17 lines
242 B
Makefile
Raw Normal View History

2024-04-18 07:59:54 +02:00
#!make
2024-08-21 22:01:24 +02:00
include .vars
2024-04-18 07:59:54 +02: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 21:49:00 +02:00
./version.sh
2024-04-18 07:59:54 +02:00
2024-08-21 22:01:24 +02:00
deploy:
./deploy.sh
run: prep
2024-04-18 07:59:54 +02:00
hugo server