add initial makefile

This commit is contained in:
David Todd 2019-05-27 02:27:17 -05:00
parent d0234764fe
commit fab515ef31
1 changed files with 26 additions and 0 deletions

26
Makefile Normal file
View File

@ -0,0 +1,26 @@
BASEDIR=$(CURDIR)
PLUGINDIR=$(BASEDIR)/plugins
PELICANDIR=$(BASEDIR)/pelican
help:
@echo 'Makefile for installing and updating the c0de.dev blog '
@echo ' '
@echo 'Usage: '
@echo ' make install Installs all components '
@echo ' make uninstall Uninstalls all components, leaving the source dir '
@echo ' make update Replaces existing components that have changed '
@echo ' make plugins Creates symlinks of newly added plugins in pelican '
@echo ' '
install:
@echo 'noop'
uninstall:
@echo 'noop'
update:
@echo 'noop'
plugins:
@echo 'Creating symlinks for plugins'
@echo 'noop'