addons-server/Makefile

17 строки
384 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)
help:
@echo "Please use 'make <target>' where <target> is one of the following commands."
@$(MAKE) help_submake --no-print-directory
@echo "Check the Makefile to know exactly what each target is doing."