Skip to content

Instantly share code, notes, and snippets.

@tun
Last active March 21, 2018 00:41
Show Gist options
  • Save tun/11375872 to your computer and use it in GitHub Desktop.
Save tun/11375872 to your computer and use it in GitHub Desktop.
Makefile for python (version 2 or 3) http server
PYTHON_VERSION = python --version|awk '{print $2}'|cut -c -1
ifeq ($PYTHON_VERSION,2)
PYHTTP = python -m 'SimpleHTTPServer'
else
PYHTTP = python -m http.server
endif
serve:
$(PYHTTP)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment