Changeset 735ff1e in trunk
- Timestamp:
- 2020-09-17T19:25:34Z (4 years ago)
- Branches:
- master
- Children:
- 775a3db
- Parents:
- da24739
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified Makefile ¶
rda24739 r735ff1e 1 1 # Tahoe LFS Development and maintenance tasks 2 # 2 3 # NOTE: this Makefile requires GNU make 3 4 … … 12 13 MAKEFLAGS += --no-builtin-rules 13 14 14 default: 15 @echo "no default target" 16 15 # Local target variables 17 16 PYTHON=python 18 17 export PYTHON 19 18 PYFLAKES=flake8 20 19 export PYFLAKES 21 22 20 SOURCES=src/allmydata static misc setup.py 23 21 APPNAME=tahoe-lafs 22 23 24 # Top-level targets 25 26 default: 27 @echo "no default target" 24 28 25 29 # This is necessary only if you want to automatically produce a new … … 28 32 make-version: 29 33 $(PYTHON) ./setup.py update_version 30 31 src/allmydata/_version.py:32 $(MAKE) make-version33 34 34 35 # Build OS X pkg packages. … … 66 67 ## # --include appeared in coverage-3.4 67 68 ## COVERAGE_OMIT=--include '$(CURDIR)/src/allmydata/*' --omit '$(CURDIR)/src/allmydata/test/*' 68 69 69 70 70 .PHONY: code-checks … … 228 228 upload-tarballs: 229 229 @if [ "X${BB_BRANCH}" = "Xmaster" ] || [ "X${BB_BRANCH}" = "X" ]; then for f in dist/*; do flappclient --furlfile ~/.tahoe-tarball-upload.furl upload-file $$f; done ; else echo not uploading tarballs because this is not trunk but is branch \"${BB_BRANCH}\" ; fi 230 231 232 # Real targets 233 234 src/allmydata/_version.py: 235 $(MAKE) make-version
Note: See TracChangeset
for help on using the changeset viewer.