# # # add_file "Makefile" # content [a992287a5d651f300760ffed04ef8202a5e0a886] # ============================================================ --- Makefile a992287a5d651f300760ffed04ef8202a5e0a886 +++ Makefile a992287a5d651f300760ffed04ef8202a5e0a886 @@ -0,0 +1,18 @@ +# +# This file is part of 'mtndumb' +# +# Copyright (C) Zbigniew Zagorski +# licensed to the public under the terms of the GNU GPL (>= 2) +# see the file COPYING for details +# I.e., do what you like, but keep copyright and there's NO WARRANTY. +# +PYTHON ?= python +default: install + +install: + $(PYTHON) setup.py install + +dist: + $(PYTHON) setup.py sdist --formats zip,gztar + +.PHONY: dist