webseite/Makefile

36 lines
1,009 B
Makefile
Raw Normal View History

2019-02-12 17:45:44 +01:00
LEKTOR_SERVER_FLAGS=-h 127.0.0.1
2019-09-09 21:17:33 +02:00
# minify javascript assets, compile scss assets
LEKTOR_PLUGIN_FLAGS=-f scss
LEKTOR_DEPLOY_FLAGS=
2019-02-12 17:45:44 +01:00
all: build
.ONESHELL:
2019-02-12 17:45:44 +01:00
install:
if hash apt-get 2>/dev/null; then
sudo apt-get update -qq >/dev/null && sudo apt-get install -qq apt-utils imagemagick python3-pip python3-setuptools gcc
elif hash pacman 2>/dev/null; then
sudo pacman -Syu imagemagick python-pip glibc lib32-glibc gcc --noconfirm
elif hash dnf 2>/dev/null; then
sudo dnf install -y ImageMagick python3-pip gcc
else
echo -e "Please install Imagemagick, python3-pip and gcc"
fi
2019-09-09 21:17:33 +02:00
pip3 install wheel --user
pip3 install lektor --user
2019-03-11 13:16:01 +01:00
2019-02-12 17:45:44 +01:00
build:
lektor clean --yes
2019-09-09 21:17:33 +02:00
lektor plugin flush-cache
2019-09-13 10:08:14 +02:00
python3 -m lektor build $(LEKTOR_PLUGIN_FLAGS)
2019-02-12 17:45:44 +01:00
server:
2019-09-13 10:08:14 +02:00
python3 -m lektor server $(LEKTOR_SERVER_FLAGS) $(LEKTOR_PLUGIN_FLAGS)
2019-09-09 21:17:33 +02:00
deploy:
lektor clean --yes
lektor plugin flush-cache
lektor build $(LEKTOR_PLUGIN_FLAGS) $(LEKTOR_DEPLOY_FLAGS)
lektor deploy $(LEKTOR_PLUGIN_FLAGS) $(LEKTOR_DEPLOY_FLAGS)