Skip to content

Commit 87b1b69

Browse files
author
Aner
committed
Stream lined Makefile
1 parent 6c3826c commit 87b1b69

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#Make makes things easier
22

3+
UNIT=./vendor/bin/phpunit
4+
35
test:
4-
./vendor/bin/phpunit
6+
$(UNIT)
57
card:
6-
./vendor/bin/phpunit ./tests/CardTest
8+
$(UNIT) ./tests/CardTest
79
deck:
8-
./vendor/bin/phpunit ./tests/DeckTest
10+
$(UNIT) ./tests/DeckTest

0 commit comments

Comments
 (0)