Skip to content

Commit

Permalink
chore: Configure makefile flags (#734)
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry authored Jan 1, 2023
1 parent aa90b27 commit 927334e
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
.DEFAULT_GOAL := help
# See https://tech.davis-hansson.com/p/make/
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules

SRC_FILES := $(shell find bin/ src/ vendor-hotfix/ -type f)

OS := $(shell uname)
PHPNOGC=php -d zend.enable_gc=0
CCYELLOW=\033[0;33m
CCEND=\033[0m
PHPNOGC = php -d zend.enable_gc=0
CCYELLOW = \033[0;33m
CCEND = \033[0m


.DEFAULT_GOAL := help


.PHONY: help
help:
Expand Down

0 comments on commit 927334e

Please sign in to comment.