From e13a6e1d4f15852a1f4aa22f91adf6007911dd03 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Fri, 13 Jan 2017 23:37:00 +0000 Subject: [PATCH] remove makefile --- Makefile | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index bbe9683..0000000 --- a/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -BASEDIR=$(PWD) -ENV=$(BASEDIR)/env/bin -NODE_BIN=node_modules/.bin -PELICAN=$(ENV)/pelican - -OUTPUTDIR=$(BASEDIR)/output -PLUGINS_DIR=$(BASEDIR)/pelican_plugins -DEPLOY_DIR=$(BASEDIR)/deploy -CONFIG_FILE=$(BASEDIR)/pelicanconf.py - -build: install - rm -rf $(OUTPUTDIR)/* - @echo ">> Building pelican..." - $(PELICAN) -o $(OUTPUTDIR) -vs $(CONFIG_FILE) - mv $(OUTPUTDIR)/assets/robots.txt $(OUTPUTDIR) - cp -R $(OUTPUTDIR)/assets/* $(OUTPUTDIR)/static - rm -rf $(OUTPUTDIR)/assets - - -install: env node_modules