Skip to content

Commit 2dd2ea5

Browse files
committed
Declare PHONY targets in root Makefile
1 parent a9353da commit 2dd2ea5

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2+
all: build # build2 build3
3+
14
time:
25
/usr/bin/ntpdate -b -s -u pool.ntp.org
36

@@ -9,6 +12,7 @@ clean:
912
rm -f *.pyo
1013
rm -f *.egg
1114
rm -f overlays/*.pyo overlays/*.pyc
15+
1216
tests:
1317
py.test
1418

@@ -30,3 +34,8 @@ build3:
3034
install3: build3
3135
python3 setup.py install --force
3236

37+
.PHONY: all clean
38+
.PHONY: tests
39+
.PHONY: build install
40+
.PHONY: build2 install2
41+
.PHONY: build3 install3

0 commit comments

Comments
 (0)