mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 02:02:38 +01:00
ircd: Update Makefile ordering to reflect current header ordering; commentary.
This commit is contained in:
parent
db22d22eab
commit
f770a1638e
2 changed files with 36 additions and 29 deletions
|
@ -196,11 +196,11 @@ namespace ircd
|
|||
#include "buffer.h"
|
||||
#include "allocator.h"
|
||||
#include "util/util.h"
|
||||
#include "info.h"
|
||||
#include "exception.h"
|
||||
#include "localee.h"
|
||||
#include "date.h"
|
||||
#include "logger.h"
|
||||
#include "info.h"
|
||||
#include "nacl.h"
|
||||
#include "rand.h"
|
||||
#include "hash.h"
|
||||
|
|
|
@ -58,44 +58,51 @@ libircd_la_LIBADD = \
|
|||
-lz \
|
||||
###
|
||||
|
||||
# Since this is a GNU C++ project we assume the non-standard respect for
|
||||
# the order of this sources list. Static initialization will occur in
|
||||
# the same order as this list, and destruction in the reverse order.
|
||||
#
|
||||
# Add the most dependent units at the end and the least dependent units
|
||||
# at the beginning.
|
||||
#
|
||||
libircd_la_SOURCES = \
|
||||
client.cc \
|
||||
hash.cc \
|
||||
rand.cc \
|
||||
ctx.cc \
|
||||
db.cc \
|
||||
exception.cc \
|
||||
fmt.cc \
|
||||
fs.cc \
|
||||
http.cc \
|
||||
info.cc \
|
||||
ircd.cc \
|
||||
json.cc \
|
||||
lexical.cc \
|
||||
base.cc \
|
||||
locale.cc \
|
||||
logger.cc \
|
||||
info.cc \
|
||||
sodium.cc \
|
||||
rand.cc \
|
||||
hash.cc \
|
||||
lexical.cc \
|
||||
base.cc \
|
||||
parse.cc \
|
||||
rfc1459.cc \
|
||||
json.cc \
|
||||
openssl.cc \
|
||||
http.cc \
|
||||
fmt.cc \
|
||||
fs.cc \
|
||||
ctx.cc \
|
||||
db.cc \
|
||||
mods.cc \
|
||||
rfc3986.cc \
|
||||
rfc1035.cc \
|
||||
net.cc \
|
||||
server.cc \
|
||||
client.cc \
|
||||
resource.cc \
|
||||
m/id.cc \
|
||||
m/event.cc \
|
||||
m/dbs.cc \
|
||||
m/state.cc \
|
||||
m/event.cc \
|
||||
m/id.cc \
|
||||
m/v1.cc \
|
||||
m/keys.cc \
|
||||
m/request.cc \
|
||||
m/room.cc \
|
||||
m/user.cc \
|
||||
m/request.cc \
|
||||
m/v1.cc \
|
||||
m/vm.cc \
|
||||
m/keys.cc \
|
||||
m/m.cc \
|
||||
mods.cc \
|
||||
net.cc \
|
||||
openssl.cc \
|
||||
parse.cc \
|
||||
resource.cc \
|
||||
rfc1035.cc \
|
||||
rfc1459.cc \
|
||||
rfc3986.cc \
|
||||
server.cc \
|
||||
sodium.cc \
|
||||
ircd.cc \
|
||||
###
|
||||
|
||||
if AIO
|
||||
|
|
Loading…
Reference in a new issue