You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently executing `make all` just fails and does not even execute all
the checks either.
The current makefile seems to be quite different that the one
traditionally used, and I don't really want to spend too much time on
it. So I copied the one from PhpSpec, adapted to keep the existing setup
(e.g. here we have PHP-CS-Fixer as a PHAR not a dev dep and we do not
have Rector).
Copy file name to clipboardExpand all lines: Makefile
+49-51Lines changed: 49 additions & 51 deletions
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,14 @@
1
-
.PHONY: ci test prerequisites
1
+
# See https://tech.davis-hansson.com/p/make/
2
+
MAKEFLAGS += --warn-undefined-variables
3
+
MAKEFLAGS += --no-builtin-rules
2
4
3
-
# Use any most recent PHP version
4
-
PHP=$(shell which php)
5
+
.DEFAULT_GOAL := help
6
+
7
+
.PHONY: help
8
+
help:
9
+
@printf "\033[33mUsage:\033[0m\n make TARGET\n\n\033[32m#\n# Commands\n#---------------------------------------------------------------------------\033[0m\n\n"
0 commit comments