mirror of
https://github.com/c0de-archive/c0de.dev-blog.git
synced 2024-10-31 23:07:47 +00:00
add initial makefile
This commit is contained in:
parent
d0234764fe
commit
fab515ef31
26
Makefile
Normal file
26
Makefile
Normal 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'
|
Loading…
Reference in New Issue
Block a user