mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-06-12 17:14:46 +02:00
Huh? Guess this 'branch protection' thing from GitHub isn't working.
This commit is contained in:
+13
-2
@@ -32,6 +32,17 @@ OBJS=timesynch.o res.o s_bsd.o auth.o aln.o channel.o cloak.o crule.o dbuf.o \
|
|||||||
|
|
||||||
SRC=$(OBJS:%.o=%.c)
|
SRC=$(OBJS:%.o=%.c)
|
||||||
|
|
||||||
|
MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'IRCDLIBS=${IRCDLIBS}' \
|
||||||
|
'LDFLAGS=${LDFLAGS}' 'IRCDMODE=${IRCDMODE}' \
|
||||||
|
'BINDIR=${BINDIR}' 'INSTALL=${INSTALL}' \
|
||||||
|
'INCLUDEDIR=${INCLUDEDIR}' 'IRCDDIR=${IRCDDIR}' \
|
||||||
|
'MANDIR=${MANDIR}' 'RM=${RM}' 'CP=${CP}' 'TOUCH=${TOUCH}' \
|
||||||
|
'RES=${RES}' 'SHELL=${SHELL}' 'STRTOUL=${STRTOUL}' \
|
||||||
|
'CRYPTOLIB=${CRYPTOLIB}' \
|
||||||
|
'CRYPTOINCLUDES=${CRYPTOINCLUDES}' 'URL=${URL}' \
|
||||||
|
|
||||||
|
MY_MAKE = $(MAKE) $(MAKEARGS)
|
||||||
|
|
||||||
INCLUDES = ../include/auth.h ../include/badwords.h ../include/channel.h \
|
INCLUDES = ../include/auth.h ../include/badwords.h ../include/channel.h \
|
||||||
../include/class.h ../include/common.h ../include/config.h ../include/dbuf.h \
|
../include/class.h ../include/common.h ../include/config.h ../include/dbuf.h \
|
||||||
../include/dynconf.h ../include/events.h ../include/fdlist.h ../include/h.h \
|
../include/dynconf.h ../include/events.h ../include/fdlist.h ../include/h.h \
|
||||||
@@ -49,7 +60,7 @@ all: build
|
|||||||
build: ircd mods
|
build: ircd mods
|
||||||
|
|
||||||
custommodule:
|
custommodule:
|
||||||
+cd modules; $(MAKE) MODULEFILE=$(MODULEFILE) 'EXLIBS=$(EXLIBS)' custommodule
|
+cd modules; $(MY_MAKE) MODULEFILE=$(MODULEFILE) 'EXLIBS=$(EXLIBS)' custommodule
|
||||||
|
|
||||||
ircd: $(OBJS)
|
ircd: $(OBJS)
|
||||||
$(CC) $(CFLAGS) $(CRYPTOLIB) -o ircd $(OBJS) $(LDFLAGS) $(IRCDLIBS) $(CRYPTOLIB)
|
$(CC) $(CFLAGS) $(CRYPTOLIB) -o ircd $(OBJS) $(LDFLAGS) $(IRCDLIBS) $(CRYPTOLIB)
|
||||||
@@ -72,7 +83,7 @@ mods:
|
|||||||
@if [ ! -r modules ] ; then \
|
@if [ ! -r modules ] ; then \
|
||||||
echo "You havent done cvs update -P -d"; \
|
echo "You havent done cvs update -P -d"; \
|
||||||
fi
|
fi
|
||||||
+cd modules; $(MAKE) all
|
+cd modules; $(MY_MAKE) all
|
||||||
|
|
||||||
version.c: version.c.SH ../Changes
|
version.c: version.c.SH ../Changes
|
||||||
$(SHELL) version.c.SH
|
$(SHELL) version.c.SH
|
||||||
|
|||||||
Reference in New Issue
Block a user