mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
Merge INSPIRCD_MODULE and INSPIRCD_TARGET.
This commit is contained in:
parent
758fc5fcbb
commit
c83ce75368
@ -30,6 +30,8 @@ BEGIN {
|
||||
use strict;
|
||||
use warnings FATAL => qw(all);
|
||||
|
||||
use File::Basename qw(basename);
|
||||
|
||||
use constant {
|
||||
BUILDPATH => $ENV{BUILDPATH},
|
||||
SOURCEPATH => $ENV{SOURCEPATH}
|
||||
@ -238,6 +240,10 @@ sub dep_so($) {
|
||||
my($file) = @_;
|
||||
my $out = find_output $file;
|
||||
|
||||
my $name = basename $out, '.so';
|
||||
print MAKE ".PHONY: $name\n";
|
||||
print MAKE "$name: $out\n";
|
||||
|
||||
dep_cpp $file, $out, 'gen-so';
|
||||
return $out;
|
||||
}
|
||||
@ -255,6 +261,9 @@ sub dep_dir($$) {
|
||||
closedir DIR;
|
||||
if (@ofiles) {
|
||||
my $ofiles = join ' ', @ofiles;
|
||||
my $name = basename $outdir;
|
||||
print MAKE ".PHONY: $name\n";
|
||||
print MAKE "$name: $outdir.so\n";
|
||||
print MAKE "$outdir.so: $ofiles\n";
|
||||
print MAKE "\t@\$(SOURCEPATH)/make/unit-cc.pl link-dir \$\@ ${\SOURCEPATH}/src/$dir \$^ \$>\n";
|
||||
return 1;
|
||||
|
@ -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'
|
||||
|
Loading…
x
Reference in New Issue
Block a user