Skip to content
Snippets Groups Projects
Commit 5bc9d933 authored by Simon Rose's avatar Simon Rose
Browse files

Removed 'dev' targets for local source mode.

Local source mode can theoreticaly run 'make devbuild' and other related targets. However,
this yields somewhat undefined behaviour, since those will potentially be missing configuration
data or clashing with the regular build location. There is no reason to include dev targets for
local source mode, so they should be removed.
parent 34e53bef
No related branches found
No related tags found
No related merge requests found
EPICS_MODULE_TAG:=master
#
EPICS_MODULE_NAME:=${E3_REQUIRE_NAME}
#
E3_MODULE_SRC_PATH:=$(EPICS_MODULE_NAME)
E3_MODULE_MAKEFILE:=$(EPICS_MODULE_NAME).Makefile
E3_MODULE_NAME:=$(EPICS_MODULE_NAME)
E3_MODULE_VERSION:=3.3.0
#
#
#
E3_MODULE_DEV_GITURL:="https://github.com/icshwi/require-ess"
# The definitions shown below can also be placed in an untracked CONFIG_MODULE.local
-include $(TOP)/../../REQUIRE_CONFIG_MODULE_DEV.local
-include $(TOP)/../REQUIRE_CONFIG_MODULE_DEV.local
-include $(TOP)/configure/CONFIG_MODULE_DEV.local
# -*- mode: Makefile;-*-
ifneq ($(E3_LOCAL_SOURCE),1)
.PHONY: devvars devenv devinit devbuild devclean devinstall devrebuild devuninstall devdistclean devconf devepics devepics-clean devepics-distclean devpatch devpatchrevert devexistent devdep devvers
devvars: vars
......@@ -69,4 +70,11 @@ devpatchrevert: patchrevert
devexistent: existent
devdep: dep
devvers: vers
endif
endif # E3_MODULE_SRC_PATH_FLAG
else
dev%:
$(error You are in local source mode. No dev targets are available)
endif # E3_LOCAL_SOURCE
EPICS_BASE=/epics/base-7.0.4
E3_REQUIRE_NAME:=require
E3_REQUIRE_VERSION=$(E3_MODULE_VERSION)
# The definitions shown below can also be placed in an untracked RELEASE.local
-include $(TOP)/../../RELEASE_DEV.local
-include $(TOP)/../RELEASE_DEV.local
-include $(TOP)/configure/RELEASE_DEV.local
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment