summaryrefslogtreecommitdiff
path: root/make/template
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2017-10-18 17:16:32 +0100
committerPeter Powell <petpow@saberuk.com>2017-11-29 19:23:40 +0000
commitc83ce753688bde7b6106acf2de44c3cf29b30a7e (patch)
tree1dab87a68986374379b64834b738b32071263ce6 /make/template
parent758fc5fcbb988a1f3d692485e47cb8d253b2bc8d (diff)
Merge INSPIRCD_MODULE and INSPIRCD_TARGET.
Diffstat (limited to 'make/template')
-rw-r--r--make/template/main.mk16
1 files changed, 4 insertions, 12 deletions
diff --git a/make/template/main.mk b/make/template/main.mk
index 4845d0dde..077084280 100644
--- a/make/template/main.mk
+++ b/make/template/main.mk
@@ -137,15 +137,9 @@ export SOURCEPATH
# Default target
TARGET = all
-ifdef INSPIRCD_MODULE
+ifdef INSPIRCD_TARGET
HEADER = mod-header
FOOTER = mod-footer
- TARGET = modules/$(INSPIRCD_MODULE:.so=).so
-endif
-
-ifdef INSPIRCD_TARGET
- HEADER =
- FOOTER = target
TARGET = $(INSPIRCD_TARGET)
endif
@@ -178,10 +172,10 @@ debug-header:
mod-header:
ifdef INSPIRCD_STATIC
- @echo 'Cannot build single modules in pure-static build'
+ @echo 'Cannot build specific targets in pure-static build'
@exit 1
endif
- @echo 'Building single module:'
+ @echo 'Building specific targets:'
mod-footer: target
@echo 'To install, copy $(BUILDPATH)/$(TARGET) to $(MODPATH)'
@@ -308,9 +302,7 @@ help:
@echo ' Currently installs to ${BASE}'
@echo ' debug Compile a debug build. Equivalent to "make D=1 all"'
@echo ''
- @echo ' INSPIRCD_MODULE=m_foo Builds a single module (core_foo also works here)'
- @echo ' INSPIRCD_TARGET=target Builds a user-specified target, such as "inspircd" or "modules"'
- @echo ' Other targets are specified by their path in the build directory'
+ @echo ' INSPIRCD_TARGET=target Builds a user-specified target, such as "inspircd" or "core_dns"'
@echo ' Multiple targets may be separated by a space'
@echo ''
@echo ' clean Cleans object files produced by the compile'