aboutsummaryrefslogtreecommitdiff
path: root/share/templater/templater/files/Makefile
blob: a53fcbb31254ab2dd0336db0966fb7ad73080e67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# Global Makefile - https://templater.fluxo.info
#
# This Makefile contains basic, common targets and also includes
# any Makefile.* available in the current folder.
#

# See http://unix.stackexchange.com/questions/32182/simple-command-line-http-server#32200
#     http://php.net/manual/en/features.commandline.webserver.php
serve:
	python -m SimpleHTTPServer
	# Or the Python 3 equivalent
	#python3 -m http.server
	#php -S localhost:8000

# Process any other Makefile whose filename matches Makefile.*
# See https://www.gnu.org/software/make/manual/html_node/Include.html
-include Makefile.*