Skip to content

Commit 946cfb8

Browse files
Makefile: make the 'build' target the default
"make" with no argument will now be equivalent of "make build" instead of "make clean"
1 parent c4e1242 commit 946cfb8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
PYTHON ?= python
22

3-
clean:
4-
$(PYTHON) setup.py clean
5-
63
build:
74
$(PYTHON) setup.py build
85

6+
clean:
7+
$(PYTHON) setup.py clean
8+
99
pypi: clean
1010
# files generated by swig
1111
rm -f smartcard/scard/scard.py

0 commit comments

Comments
 (0)