This repository has been archived on 2025-02-12. You can view files and clone it, but cannot push or open issues or pull requests.
NeoStats-NeoIRCd/iauth/source/Makefile.in
2002-08-13 14:45:13 +00:00

64 lines
967 B
Makefile

#
# Makefile.in for ircd/iauth
#
# $Id: Makefile.in,v 1.2 2002/08/13 14:45:09 fishwaldo Exp $
#
CC = @CC@
RM = @RM@
CFLAGS = @IRC_CFLAGS@
MKDEP = ${CC} -MM
SSL_LIBS = @SSL_LIBS@
SSL_INCLUDES = @SSL_INCLUDES@
IRCDLIBS = @LIBS@ $(SSL_LIBS)
INCLUDES = -I../include $(SSL_INCLUDES)
CPPFLAGS = ${INCLUDES} @CPPFLAGS@
#
# For developers
# CFLAGS= -g -O2 -Wall
#
SOURCES = \
auth.c \
class.c \
commands.c \
conf.c \
iauth.c \
log.c \
match.c \
misc.c \
mtree.c \
sock.c
OBJECTS = ${SOURCES:.c=.o}
all: iauth
build: all
iauth: ${OBJECTS}
${CC} ${LDFLAGS} -o $@ ${OBJECTS} ${IRCDLIBS}
install: build
@echo "Please do a make install from the top level directory"
.c.o:
${CC} ${CPPFLAGS} ${CFLAGS} -c $<
.PHONY: depend clean distclean
depend:
${MKDEP} ${CPPFLAGS} ${SOURCES} > .depend
clean:
${RM} -f *.o *~ *.core core iauth
distclean: clean
${RM} -f Makefile
@INCDEP@
# End of Makefile