summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2020-09-30 16:45:35 +0100
committerSadie Powell <sadie@witchery.services>2020-09-30 16:45:35 +0100
commita3aa70cf18ae58fe137e7d2be306c93d4ddb94ca (patch)
tree3efc8d336af99c05efc9a2ba240af3332c0d13ff /make
parent44252831d3aba2435e75305dbef30fdd1c76e1a7 (diff)
Remove the mod-footer make target as it prints invalid messages.
Diffstat (limited to 'make')
-rw-r--r--make/template/main.mk8
1 files changed, 1 insertions, 7 deletions
diff --git a/make/template/main.mk b/make/template/main.mk
index 5a2107d3d..5e2f3f606 100644
--- a/make/template/main.mk
+++ b/make/template/main.mk
@@ -128,7 +128,6 @@ ifeq ($(INSPIRCD_DEBUG), 3)
HEADER = std-header
DBGOK=1
endif
-FOOTER = finishmessage
MAKEFLAGS += --no-print-directory
@@ -159,7 +158,6 @@ TARGET = all
ifdef INSPIRCD_TARGET
HEADER = mod-header
- FOOTER = mod-footer
TARGET = $(INSPIRCD_TARGET)
endif
@@ -167,7 +165,7 @@ ifeq ($(DBGOK), 0)
HEADER = unknown-debug-level
endif
-all: $(FOOTER)
+all: finishmessage
target: $(HEADER)
$(MAKEENV) perl make/calcdep.pl
@@ -193,10 +191,6 @@ debug-header:
mod-header:
@echo 'Building specific targets:'
-mod-footer: target
- @echo 'To install, copy $(BUILDPATH)/$(TARGET) to $(MODPATH)'
- @echo 'Or, run "make install"'
-
std-header:
@echo "*************************************"
@echo "* BUILDING INSPIRCD *"