addons-server/Makefile

20 строки
564 B
Makefile
Исходник Обычный вид История

IN_DOCKER = $(wildcard /addons-server-docker-container)
ifneq ($(IN_DOCKER),)
SUB_MAKEFILE = Makefile-docker
else
SUB_MAKEFILE = Makefile-os
endif
include $(SUB_MAKEFILE)
2017-06-09 20:14:29 +03:00
help:
2019-08-29 16:34:26 +03:00
@echo "Please use 'make <target>' where <target> is one of the following commands.\n"
@$(MAKE) help_submake --no-print-directory
2019-08-29 16:34:26 +03:00
@echo "\nCheck the Makefile to know exactly what each target is doing."
# You probably want to put new commands in Makefile-docker rather than here -
# unless they operate on multiple containers or are host-os specific, then
# Makefile-os instead.