summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2015-07-16 18:02:13 -0700
committerFranck Cuny <franckcuny@gmail.com>2015-07-16 18:02:13 -0700
commitde3f36ee187677957d5d89d56bf129790cc6926a (patch)
treed6b2912bf21582fdcca15399add1df303d056a26 /Makefile
parentremove more files (diff)
downloadlumberjaph-de3f36ee187677957d5d89d56bf129790cc6926a.tar.gz
some cleanup.
Upadte the CSS, remove some files, etc.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 0 insertions, 14 deletions
diff --git a/Makefile b/Makefile
index af0945c..4dd3acf 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,3 @@
-PNGS=$(shell find static -name "*.png")
-JPGS=$(shell find static -name "*.jpg")
-
-PNG2WEBP := $(patsubst %.png,%.webp,$(PNGS))
-JPG2WEBP := $(patsubst %.jpg,%.webp,$(JPGS))
-
-images: $(PNG2WEBP) $(JPG2WEBP)
-
-%.webp: %.png %.jpg
- cwebp -q 100 "$<" -o "$@"
-
build: clean
bundle exec jekyll build
@@ -18,8 +7,5 @@ clean:
server: clean
bundle exec jekyll server --port 3001 --watch --drafts
-publish: build images
- rsync -avz --delete _site/ lumberjaph.net:/srv/www/lumberjaph.net/
-
deps:
bundle install --path vendor/bundle