144 lines
3.4 KiB
Makefile
144 lines
3.4 KiB
Makefile
#************************************************************************
|
|
#* IRC - Internet Relay Chat, Makefile
|
|
#* Copyright (C) 1990, Jarkko Oikarinen
|
|
#*
|
|
#* This program is free software; you can redistribute it and/or modify
|
|
#* it under the terms of the GNU General Public License as published by
|
|
#* the Free Software Foundation; either version 1, or (at your option)
|
|
#* any later version.
|
|
#*
|
|
#* This program is distributed in the hope that it will be useful,
|
|
#* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
#* GNU General Public License for more details.
|
|
#*
|
|
#* You should have received a copy of the GNU General Public License
|
|
#* along with this program; if not, write to the Free Software
|
|
#* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
#*/
|
|
|
|
CC=cc
|
|
RM=/bin/rm
|
|
INCLUDEDIR=../include
|
|
|
|
# Default flags:
|
|
CFLAGS= -g -I$(INCLUDEDIR) -O
|
|
#IRCDLIBS=
|
|
#
|
|
# use the following on MIPS:
|
|
#CFLAGS= -systype bsd43 -DSYSTYPE_BSD43 -I$(INCLUDEDIR)
|
|
# For Irix 4.x (SGI), use the following:
|
|
#CFLAGS= -g -cckr -I$(INCLUDEDIR)
|
|
#
|
|
# on NEXT use:
|
|
#CFLAGS=-bsd -I$(INCLUDEDIR)
|
|
#on NeXT other than 2.0:
|
|
#IRCDLIBS=-lsys_s
|
|
#
|
|
# AIX 370 flags
|
|
#CFLAGS=-D_BSD -Hxa -I$(INCLUDEDIR)
|
|
#IRCDLIBS=-lbsd
|
|
#
|
|
# Dynix/ptx V2.0.x
|
|
#CFLAGS= -I$(INCLUDEDIR) -O -Xo
|
|
#IRCDLIBS= -lsocket -linet -lnsl -lseq
|
|
#
|
|
# Dynix/ptx V1.x.x
|
|
#IRCDLIBS= -lsocket -linet -lnsl -lseq
|
|
#
|
|
#use the following on SUN OS without nameserver libraries inside libc
|
|
#IRCDLIBS=-lresolv
|
|
#
|
|
# Solaris 2
|
|
#IRCDLIBS=-lsocket -lnsl
|
|
#
|
|
# ESIX
|
|
#CFLAGS=-O -I$(INCLUDEDIR) -I/usr/ucbinclude
|
|
#IRCDLIBS=-L/usr/ucblib -L/usr/lib -lsocket -lucb -lns -lnsl
|
|
#
|
|
# LDFLAGS - flags to send the loader (ld). SunOS users may want to add
|
|
# -Bstatic here.
|
|
#
|
|
#LDFLAGS=-Bstatic
|
|
#
|
|
#Dell SVR4
|
|
#CC=gcc
|
|
#CFLAGS= -I$(INCLUDEDIR) -O2
|
|
#IRCDLIBS=-lsocket -lnsl -lucb
|
|
|
|
|
|
|
|
# IRCDMODE is the mode you want the binary to be.
|
|
# The 4 at the front is important (allows for setuidness)
|
|
#
|
|
# WARNING: if you are making ircd SUID or SGID, check config.h to make sure
|
|
# you are not defining CMDLINE_CONFIG
|
|
IRCDMODE = 0755
|
|
|
|
# IRCDDIR must be the same as DPATH in include/config.h
|
|
#
|
|
IRCDDIR=/usr/local/lib/ircd
|
|
|
|
SHELL=/bin/sh
|
|
SUBDIRS=common ircd
|
|
BINDIR=$(IRCDDIR)
|
|
MANDIR=$(IRCDDIR)/man
|
|
INSTALL=/usr/bin/install
|
|
|
|
MAKE=make 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'IRCDLIBS=${IRCDLIBS}' \
|
|
'LDFLAGS=${LDFLAGS}' 'IRCDMODE=${IRCDMODE}' 'BINDIR=${BINDIR}' \
|
|
'INSTALL=${INSTALL}' 'INCLUDEDIR=${INCLUDEDIR}' \
|
|
'IRCDDIR=${IRCDDIR}' 'MANDIR=${MANDIR}'
|
|
|
|
all: build
|
|
|
|
server:
|
|
@echo 'Making server'; cd ircd; ${MAKE} build; cd ..;
|
|
|
|
build:
|
|
-@if [ ! -f include/setup.h ] ; then \
|
|
echo "Hmm...doesn't look like you've run Config..."; \
|
|
echo "Doing so now."; \
|
|
sh Config; \
|
|
fi
|
|
@for i in $(SUBDIRS); do \
|
|
echo "Building $$i";\
|
|
cd $$i;\
|
|
${MAKE} build;\
|
|
if [ $$? -ne 0 ]; then\
|
|
break;\
|
|
fi;\
|
|
cd ..;\
|
|
done
|
|
|
|
clean:
|
|
$(RM) -f *~ \#* core *.orig include/*.orig
|
|
@for i in $(SUBDIRS); do \
|
|
echo "Cleaning $$i";\
|
|
cd $$i;\
|
|
${MAKE} clean; cd ..;\
|
|
done
|
|
-@if [ -f include/setup.h ] ; then \
|
|
echo "To really restart installation, remove include/setup.h" ; \
|
|
fi
|
|
|
|
depend:
|
|
@for i in $(SUBDIRS); do \
|
|
echo "Making dependencies in $$i";\
|
|
cd $$i;\
|
|
${MAKE} depend; cd ..;\
|
|
done
|
|
|
|
install: all
|
|
chmod +x ./bsdinstall
|
|
@for i in ircd doc; do \
|
|
echo "Installing $$i";\
|
|
cd $$i;\
|
|
${MAKE} install; cd ..;\
|
|
done
|
|
|
|
|
|
rcs:
|
|
cii -H -R Makefile common include ircd
|
|
|