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

Remove separate install_module target

This removal allows us to remove the `hdrs` target from every module; there
were only two modules that still used it, and they have both been fixed.
parent 426123d2
No related branches found
Tags 3.0.17
No related merge requests found
...@@ -5,7 +5,7 @@ cellbuild: build ...@@ -5,7 +5,7 @@ cellbuild: build
.PHONY: cellinstall .PHONY: cellinstall
## Installs the module in a local directory $(E3_CELL_PATH) ## Installs the module in a local directory $(E3_CELL_PATH)
cellinstall: install_module fix_permissions cellinstall: install fix_permissions
.PHONY: celluninstall .PHONY: celluninstall
## Remove the module from the local directory $(E3_CELL_PATH) ## Remove the module from the local directory $(E3_CELL_PATH)
......
...@@ -28,9 +28,6 @@ help: ...@@ -28,9 +28,6 @@ help:
## Install module to $(E3_MODULES_INSTALL_LOCATION)
install: install_module hdrs
.PHONY: db .PHONY: db
db: err_no_db_rule db: err_no_db_rule
...@@ -38,8 +35,8 @@ db: err_no_db_rule ...@@ -38,8 +35,8 @@ db: err_no_db_rule
err_no_db_rule: err_no_db_rule:
$(error The 'db' target has been discontinued. If you have custom database expansion rule to use, please contact the e3 team) $(error The 'db' target has been discontinued. If you have custom database expansion rule to use, please contact the e3 team)
.PHONY: install_module ## Install module to $(E3_MODULES_INSTALL_LOCATION)
install_module: build install: build
$(QUIET) $(E3_MODULE_MAKE_CMDS) install $(QUIET) $(E3_MODULE_MAKE_CMDS) install
.PHONY: check_uninstall .PHONY: check_uninstall
......
...@@ -53,9 +53,6 @@ forceuninstall: conf ...@@ -53,9 +53,6 @@ forceuninstall: conf
consistency_checks: consistency_checks:
.PHONY: hdrs
hdrs:
VARS_EXCLUDES+=FILE_FILTER VARS_EXCLUDES+=FILE_FILTER
VARS_EXCLUDES+=E3_SHELL_FILES VARS_EXCLUDES+=E3_SHELL_FILES
VARS_EXCLUDES+=E3_IOC_CFG_FILES VARS_EXCLUDES+=E3_IOC_CFG_FILES
......
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