Indentation Correction
This commit is contained in:
parent
1ef96c3c4c
commit
b975508d07
1 changed files with 21 additions and 21 deletions
42
Makefile
42
Makefile
|
@ -18,23 +18,23 @@ DEBIAN_PACKAGE_BUILD_PATH := $(BUILD_PATH)/ncc_$(BUILD_VERSION)_all.deb
|
||||||
|
|
||||||
# List of paths for autoloading
|
# List of paths for autoloading
|
||||||
AUTOLOAD_PATHS := $(addprefix $(SRC_PATH)/ncc/ThirdParty/, \
|
AUTOLOAD_PATHS := $(addprefix $(SRC_PATH)/ncc/ThirdParty/, \
|
||||||
composer/Semver \
|
composer/Semver \
|
||||||
defuse/php-encryption \
|
defuse/php-encryption \
|
||||||
jelix/version \
|
jelix/version \
|
||||||
nikic/PhpParser \
|
nikic/PhpParser \
|
||||||
Symfony/polyfill_ctype \
|
Symfony/polyfill_ctype \
|
||||||
Symfony/polyfill_mbstring \
|
Symfony/polyfill_mbstring \
|
||||||
Symfony/polyfill_uuid \
|
Symfony/polyfill_uuid \
|
||||||
Symfony/Process \
|
Symfony/Process \
|
||||||
Symfony/Uid \
|
Symfony/Uid \
|
||||||
Symfony/Filesystem \
|
Symfony/Filesystem \
|
||||||
Symfony/Yaml \
|
Symfony/Yaml \
|
||||||
theseer/DirectoryScanner \
|
theseer/DirectoryScanner \
|
||||||
)
|
)
|
||||||
|
|
||||||
# Check for necessary binaries
|
# Check for necessary binaries
|
||||||
ifndef PHPCC
|
ifndef PHPCC
|
||||||
$(error "PHP binary not found. Please install PHP or check your PATH")
|
$(error "PHP binary not found. Please install PHP or check your PATH")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Check if phpab is installed
|
# Check if phpab is installed
|
||||||
|
@ -153,13 +153,13 @@ clean:
|
||||||
.PHONY: help
|
.PHONY: help
|
||||||
help:
|
help:
|
||||||
@echo "Available commands:"
|
@echo "Available commands:"
|
||||||
@echo " make autoload - Generate autoload files"
|
@echo " make autoload - Generate autoload files"
|
||||||
@echo " make redist - Prepare the project for redistribution"
|
@echo " make redist - Prepare the project for redistribution"
|
||||||
@echo " make install - Installs ncc on the system (requires root privileges & php)"
|
@echo " make install - Installs ncc on the system (requires root privileges & php)"
|
||||||
@echo " make tar - Package the project into a tarball (Generic installer, requires php)"
|
@echo " make tar - Package the project into a tarball (Generic installer, requires php)"
|
||||||
@echo " make deb - Package the project into a Debian package"
|
@echo " make deb - Package the project into a Debian package"
|
||||||
@echo " make docker-debian - Build a Debian Docker image"
|
@echo " make docker-debian - Build a Debian Docker image"
|
||||||
@echo " make docker-debian-run - Run the Debian Docker image"
|
@echo " make docker-debian-run - Run the Debian Docker image"
|
||||||
@echo " make docker-alpine - Build an Alpine Docker image"
|
@echo " make docker-alpine - Build an Alpine Docker image"
|
||||||
@echo " make docker-alpine-run - Run the Alpine Docker image"
|
@echo " make docker-alpine-run - Run the Alpine Docker image"
|
||||||
@echo " make clean - Clean the build artifacts"
|
@echo " make clean - Clean the build artifacts"
|
Loading…
Add table
Reference in a new issue