-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathMakefile
More file actions
19 lines (16 loc) · 645 Bytes
/
Copy pathMakefile
File metadata and controls
19 lines (16 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# Copyright (c) nexB Inc. and others. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
# See https://github.com/nexB/ for support or download.
# See https://aboutcode.org for more information about nexB OSS projects.
#
clean:
rm -rf build/ dist/
find . -type f -name '*.py[co]' -delete -o -type d -name __pycache__ -delete
build:
rm -f src/packagedcode_msitools/bin/msi*
python setup.py clean --all sdist
rm -f src/packagedcode_msitools/bin/msi*
python setup.py clean --all bdist_wheel --python-tag py3 --plat-name manylinux1_x86_64
.PHONY: clean build