]> jfr.im git - irc/rqf/shadowircd.git/blame - Makefile.in
[svn] - forgot to do something
[irc/rqf/shadowircd.git] / Makefile.in
CommitLineData
212380e3 1#************************************************************************
2#* IRC - Internet Relay Chat, Makefile
3#* Copyright (C) 1990, Jarkko Oikarinen
4#*
5#* This program is free software; you can redistribute it and/or modify
6#* it under the terms of the GNU General Public License as published by
7#* the Free Software Foundation; either version 1, or (at your option)
8#* any later version.
9#*
10#* This program is distributed in the hope that it will be useful,
11#* but WITHOUT ANY WARRANTY; without even the implied warranty of
12#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13#* GNU General Public License for more details.
14#*
15#* You should have received a copy of the GNU General Public License
16#* along with this program; if not, write to the Free Software
17#* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18#*
19#* $Id: Makefile.in 1347 2006-05-17 14:49:13Z nenolod $
20#*/
21
22RM=@RM@
23prefix = @prefix@
24exec_prefix = @exec_prefix@
25bindir = @bindir@
26mandir = @mandir@
27moduledir = @moduledir@
28helpdir = @helpdir@
29confdir = @confdir@
30logdir = @logdir@
31
32# Default CFLAGS
33# CFLAGS = -g -O2 -DNDEBUG
34CFLAGS = @CFLAGS@
35# Developers CFLAGS
36#CFLAGS= -g -O2 -Wunused -Wall -ggdb -pedantic -Wshadow -Wmissing-declarations
37
38# Default make flags - you may want to uncomment this on a multicpu machine
39#MFLAGS = -j 4
40
41#
42# For developers
43#CFLAGS= -g -O2 -Wall
44
45# You may need to define the FD_SETSIZE in order to overrule
46# the system one.
47#CFLAGS= -DNDEBUG -g -O2 -D"FD_SETSIZE=1024"
48SHELL=/bin/sh
49SUBDIRS=modules extensions libcharybdis src tools servlink doc help
50CLEANDIRS = ${SUBDIRS}
51RSA_FILES=rsa_respond/README rsa_respond/respond.c rsa_respond/Makefile
52
53MAKE = make ${MFLAGS}
54
55all: build
56
57
58autoconf: configure.ac
59 autoconf
60 autoheader
61 ${RM} -f config.cache
62
63build:
64 -@if [ ! -f include/setup.h ] ; then \
65 echo "Hmm...doesn't look like you've run configure..."; \
66 echo "Doing so now."; \
67 sh configure; \
68 fi
69 @for i in $(SUBDIRS); do \
70 echo "build ==> $$i";\
71 cd $$i;\
72 ${MAKE} build || exit; cd ..;\
73 done
74
75clean:
76 ${RM} -f *~ core rsa_respond.tar rsa_respond.tar.gz
77 @for i in $(CLEANDIRS); do \
78 echo "clean ==> $$i";\
79 cd $$i;\
80 ${MAKE} clean; cd ..;\
81 done
82 -@if [ -f include/setup.h ] ; then \
83 echo "To really restart installation, make distclean" ; \
84 fi
85
86distclean:
87 ${RM} -f Makefile *~ *.rej *.orig core ircd.core
88 ${RM} -f config.status config.cache config.log
89 cd include; ${RM} -f setup.h *~ *.rej *.orig ; cd ..
90 @for i in $(CLEANDIRS); do \
91 echo "distclean ==> $$i";\
92 cd $$i;\
93 ${MAKE} distclean; cd ..;\
94 done
95
96depend:
97 @for i in $(SUBDIRS); do \
98 echo "depend ==> $$i";\
99 cd $$i;\
100 ${MAKE} depend; cd ..;\
101 done
102
103lint:
104 @for i in $(SUBDIRS); do \
105 echo "lint ==> $$i";\
106 cd $$i;\
107 ${MAKE} lint; cd ..;\
108 done
109
110install-mkdirs:
111 @echo "ircd: setting up ircd directory structure"
112 -@if test ! -d $(DESTDIR)$(prefix); then \
113 mkdir $(DESTDIR)$(prefix); \
114 fi
115 -@if test ! -d $(DESTDIR)$(bindir); then \
116 mkdir $(DESTDIR)$(bindir); \
117 fi
118 -@if test ! -d $(DESTDIR)$(confdir); then \
119 mkdir $(DESTDIR)$(confdir); \
120 fi
121 -@if test ! -d $(DESTDIR)$(mandir); then \
122 mkdir $(DESTDIR)$(mandir); \
123 fi
124 -@if test ! -d $(DESTDIR)$(moduledir); then \
125 mkdir $(DESTDIR)$(moduledir); \
126 fi
127 -@if test ! -d $(DESTDIR)$(helpdir); then \
128 mkdir $(DESTDIR)$(helpdir); \
129 fi
130 -@if test ! -d $(DESTDIR)$(logdir); then \
131 mkdir $(DESTDIR)$(logdir); \
132 fi
133
134install: install-mkdirs all
135 @for i in $(SUBDIRS); do \
136 echo "install ==> $$i";\
137 cd $$i;\
138 ${MAKE} install; \
139 cd ..; \
140 done
141
142rsa_respond:
143 @cd tools;\
144 echo "Creating rsa_respond.tar.gz";\
145 tar cf ../rsa_respond.tar $(RSA_FILES);\
146 cd ..;\
147 gzip rsa_respond.tar