diff options
author | Vincent Douillet <vincent@vdouillet.fr> | 2022-04-08 18:50:41 +0200 |
---|---|---|
committer | Vincent Douillet <vincent@vdouillet.fr> | 2022-04-08 18:50:41 +0200 |
commit | 25547303a15d699749b382cf4f33ee744820a431 (patch) | |
tree | 5fb2f1aff2533a72c191ed2c2d87f5eee4ea605b /Makefile | |
parent | b5e822aaf1ba61134c05dc38506c4a4031d7c9c1 (diff) |
article: x11vnc on openbsd
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -26,13 +26,16 @@ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. -MD=markdown_py +MD=Markdown.pl .SUFFIXES: .md .html articles!=ls *.md articles_html = ${articles:.md=.html} site : index about $(articles_html) + @echo "Copying static resources" @cp static/favicon.ico output/ + @mkdir -p output/static + @cp static/passthrough/* output/static @echo "done" index : @@ -69,5 +72,8 @@ about : clean : rm -rf output/* +serve : + python3 -m http.server 8080 --directory output/ + upload : rsync -avc --delete output/ vincent@blog.vdouillet.fr:/var/www/htdocs/blog/ |