You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
383 B
15 lines
383 B
3 years ago
|
BUILDDIR=../ungleich-staticcms-build
|
||
|
DESTINATION=ungleichstatic@staticweb.ungleich.ch:/home/services/www/ungleichstatic/staticcms.ungleich.ch/www/
|
||
|
|
||
|
all: publish
|
||
|
|
||
|
publish: build permissions
|
||
|
rsync -av $(BUILDDIR)/ $(DESTINATION)
|
||
|
|
||
|
permissions: build
|
||
|
find $(BUILDDIR) -type f -exec chmod 0644 {} \;
|
||
|
find $(BUILDDIR) -type d -exec chmod 0755 {} \;
|
||
|
|
||
|
build:
|
||
|
lektor build -O $(BUILDDIR)
|