1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-05 11:13:13 +02:00

src/extbans.c -> src/api-extbans.c, and the same for extcmodes and umodes.

I suppose what is and what is not an API can be considered a bit arbitrary
but for us it is the stuff we expose via the module api. We now have:
api-clicap
api-command
api-event
api-extbans
api-extcmodes
api-history-backend
api-isupport
api-mtag
api-umodes
This commit is contained in:
Bram Matthys
2019-08-16 17:52:49 +02:00
parent fd37f050b8
commit fffd459bf9
5 changed files with 18 additions and 18 deletions
+9 -9
View File
@@ -26,9 +26,9 @@ OBJS=res.o bsd.o auth.o channel.o cloak.o crule.o dbuf.o \
match.o modules.o packet.o parse.o mempool.o operclass.o \
conf_preprocessor.o conf.o debug.o dispatch.o err.o extra.o kline.o \
misc.o numeric.o serv.o aliases.o $(STRTOUL) socket.o \
tls.o user.o scache.o send.o support.o umodes.o \
version.o whowas.o random.o extcmodes.o moddata.o uid.o \
extbans.o api-isupport.o api-command.o api-clicap.o api-mtag.o \
tls.o user.o scache.o send.o support.o api-umodes.o \
version.o whowas.o random.o api-extcmodes.o moddata.o uid.o \
api-extbans.o api-isupport.o api-command.o api-clicap.o api-mtag.o \
api-history-backend.o md5.o crypt_blowfish.o updconf.o crashreport.o \
openssl_hostname_validation.o $(URL)
@@ -113,8 +113,8 @@ mempool.o: mempool.c $(INCLUDES)
support.o: support.c $(INCLUDES)
$(CC) $(CFLAGS) $(BINCFLAGS) -c support.c
umodes.o: umodes.c $(INCLUDES)
$(CC) $(CFLAGS) $(BINCFLAGS) -c umodes.c
api-umodes.o: api-umodes.c $(INCLUDES)
$(CC) $(CFLAGS) $(BINCFLAGS) -c api-umodes.c
userload.o: userload.c $(INCLUDES)
$(CC) $(CFLAGS) $(BINCFLAGS) -c userload.c
@@ -206,8 +206,8 @@ crule.o: crule.c $(INCLUDES)
random.o: random.c $(INCLUDES)
$(CC) $(CFLAGS) $(BINCFLAGS) -c random.c
extcmodes.o: extcmodes.c $(INCLUDES)
$(CC) $(CFLAGS) $(BINCFLAGS) -c extcmodes.c
api-extcmodes.o: api-extcmodes.c $(INCLUDES)
$(CC) $(CFLAGS) $(BINCFLAGS) -c api-extcmodes.c
operclass.o: operclass.c $(INCLUDES)
$(CC) $(CFLAGS) $(BINCFLAGS) -c operclass.c
@@ -215,8 +215,8 @@ operclass.o: operclass.c $(INCLUDES)
moddata.o: moddata.c $(INCLUDES)
$(CC) $(CFLAGS) $(BINCFLAGS) -c moddata.c
extbans.o: extbans.c $(INCLUDES)
$(CC) $(CFLAGS) $(BINCFLAGS) -c extbans.c
api-extbans.o: api-extbans.c $(INCLUDES)
$(CC) $(CFLAGS) $(BINCFLAGS) -c api-extbans.c
md5.o: md5.c $(INCLUDES)
$(CC) $(CFLAGS) $(BINCFLAGS) -c md5.c
View File
View File