This repository has been archived by the owner on Jan 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.in
227 lines (179 loc) · 6.81 KB
/
Makefile.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
# Makefile for PennMUSH
# - System configuration - #
VERSION=1.8.5
PATCHLEVEL=7
#
# This section of the file should be automatically configured by the
# Configure script. If it doesn't work, you might try reporting your
# problem (including this Makefile) at
# http://code.google.com/p/pennmush/issues/list
#
# If you want to profile the code, add -pg -a -DPROFILING to CCFLAGS
# and (probably) remove -O
#
MAKE=@MAKE@
CC=@CC@
SQL_CFLAGS=@MYSQL_CFLAGS@ @POSTGRESQL_CFLAGS@ @SQLITE3_CFLAGS@
SQL_LDFLAGS=@MYSQL_LDFLAGS@ @POSTGRESQL_LDFLAGS@ @SQLITE3_LDFLAGS@
CCFLAGS=@CFLAGS@ -I.. -I../hdrs -include ../config.h -include ../confmagic.h -include ../options.h -funsigned-char @CPPFLAGS@ @PCRE_CFLAGS@ @OPENSSL_INCLUDES@
LDFLAGS=@LDFLAGS@ @OPENSSL_LDFLAGS@
CLIBS=@LIBS@ @PCRE_LIBS@ @OPENSSL_LIBS@
INSTALL=@INSTALL@
INSTALLDIR=$installdir
CP=@CP@
CHMOD=@CHMOD@
INSTALL_LINKS=@LN_S@ ../src/netmud netmush; @LN_S@ ../src/info_slave info_slave; @LN_S@ ../src/ssl_slave ssl_slave
# stupid SYS V shell
SHELL=/bin/sh
# Where to install with 'make globalinstall'
GLOBAL_INSTALL=@libexecdir@
all: config.h options.h autogen game/mush.cnf
@echo "Making all in src."
(cd src; @MAKE@ all "CC=$(CC)" "CCFLAGS=$(CCFLAGS)" \
"LDFLAGS=$(LDFLAGS)" "CLIBS=$(CLIBS)" "MAKE=$(MAKE)" \
"MAKEFLAGS=$(MAKEFLAGS)" "SQL_CFLAGS=$(SQL_CFLAGS)" \
"SQL_LDFLAGS=$(SQL_LDFLAGS)")
@echo "If the make was successful, use 'make install' to install links."
config.h: configure
@echo "Looks like your configure has been updated."
@echo "Run that first. If you did just run configure and"
@echo "it said that config.h was unchanged, 'touch config.h'"
@echo "to suppress this message and continue compiling."
@exit 1
options.h: options.h.dist
@echo "Please use 'make update' to set/update your MUSH configuration in options.h and the game/*.cnf files."
@exit 1
autogen: hdrs/cmds.h hdrs/funs.h hdrs/switches.h
hdrs/cmds.h: src/cmds.c src/command.c src/cque.c src/help.c src/set.c src/sql.c Patchlevel
@PERL@ utils/mkcmds.pl commands
hdrs/switches.h: src/SWITCHES Patchlevel
@PERL@ utils/mkcmds.pl switches
src/switchinc.c: src/SWITCHES Patchlevel
@PERL@ utils/mkcmds.pl switches
hdrs/funs.h: src/fun*.c src/bsd.c src/conf.c src/extmail.c src/help.c src/markup.c src/wiz.c src/sql.c Patchlevel src/cque.c
@PERL@ utils/mkcmds.pl functions
install: localized all
-rm -f game/netmush
-rm -f game/info_slave
-rm -f game/ssl_slave
(cd game; $(INSTALL_LINKS))
(cd game/txt; make)
@echo "If you plan to run multiple MUSHes, consider running 'make customize'"
netmud:
(cd src; make netmud "CC=$(CC)" "CCFLAGS=$(CCFLAGS)" \
"SQL_CFLAGS=$(SQL_CFLAGS)" "SQL_LDFLAGS=$(SQL_LDFLAGS)" \
"LDFLAGS=$(LDFLAGS)" "CLIBS=$(CLIBS)" )
access:
utils/make_access_cnf.sh game
pennmush.pot:
(cd src; make ../po/pennmush.pot)
localized:
-echo "Localizing for your locale..."
-(cd po; make localized)
portmsg:
(cd src; make portmsg "CC=$(CC)" "CCFLAGS=$(CCFLAGS)" \
"LDFLAGS=$(LDFLAGS)" "CLIBS=$(CLIBS)" )
ssl_slave:
(cd src; make ssl_slave "CC=$(CC)" "CCFLAGS=$(CCFLAGS)" \
"LDFLAGS=$(LDFLAGS)" "CLIBS=$(CLIBS)" "MAKE=$(MAKE)" \
"MAKEFLAGS=$(MAKEFLAGS)")
versions: CHANGES*
-@rm -rf CHANGES*~ CHANGES*bak
@utils/mkvershlp.pl game/txt/hlp CHANGES*
@if [ ! -f hdrs/svninfo.h ]; then \
echo '#define SVNREVISION "$$Rev$$"' > hdrs/svninfo.h; \
echo '#define SVNDATE "$$Date$$"' >> hdrs/svninfo.h; \
else \
echo `egrep "#define SVNREVISION \".+?\"" hdrs/svninfo.h` > hdrs/svninfo2.h; \
echo `egrep "#define SVNDATE \".+?\"" hdrs/svninfo.h` >> hdrs/svninfo2.h; \
mv -f hdrs/svninfo2.h hdrs/svninfo.h; \
fi
@echo "/* Built at `date +%Y%m%d%H%M%S` */" >> hdrs/svninfo.h
safety:
$(CP) src/*.c /var/pennmush-bak/src
$(CP) hdrs/*.h /var/pennmush-bak/hdrs
$(CP) * /var/pennmush-bak
distdepend: hdrs/funs.h hdrs/cmds.h
(cd src; @MAKE@ depend "CC=$(CC)" "CCFLAGS=$(CCFLAGS)" \
"LDFLAGS=$(LDFLAGS)" "CLIBS=$(CLIBS)" )
local-files:
$(CP) -f src/cmdlocal.dst src/cmdlocal.c
$(CP) -f src/flaglocal.dst src/flaglocal.c
$(CP) -f src/funlocal.dst src/funlocal.c
$(CP) -f src/local.dst src/local.c
# REQUIRES GNU INDENT! DON'T INDENT WITH ANYTHING ELSE!
indent:
@(cd src; make indent)
customize: update-conf
-@@PERL@ utils/customize.pl
# The default place to find the runtime files is in this directory,
# but it can be overridden with env variables so people can use
# other game directories.
GAMEDIR=game
update-conf: game/mushcnf.dst game/aliascnf.dst game/restrictcnf.dst game/namescnf.dst
-@@TOUCH@ game/mushcnf.dst
-@@PERL@ utils/update-cnf.pl $(GAMEDIR)/mush.cnf game/mushcnf.dst
-@@TOUCH@ game/aliascnf.dst
-@@PERL@ utils/update-cnf.pl $(GAMEDIR)/alias.cnf game/aliascnf.dst
-@@TOUCH@ game/restrictcnf.dst
-@@PERL@ utils/update-cnf.pl $(GAMEDIR)/restrict.cnf game/restrictcnf.dst
-@if [ ! -f $(GAMEDIR)/names.cnf ]; then $(CP) game/namescnf.dst $(GAMEDIR)/names.cnf; fi
$(GAMEDIR)/alias.cnf: game/aliascnf.dst
-@@TOUCH@ game/aliascnf.dst
-@@PERL@ utils/update-cnf.pl $(GAMEDIR)/alias.cnf game/aliascnf.dst
$(GAMEDIR)/restrict.cnf: game/restrictcnf.dst
-@@TOUCH@ game/restrictcnf.dst
-@@PERL@ utils/update-cnf.pl $(GAMEDIR)/restrict.cnf game/restrictcnf.dst
$(GAMEDIR)/names.cnf: game/namescnf.dst
if [ ! -f game/names.cnf ]; then \
$(CP) game/namescnf.dst $(GAMEDIR)/names.cnf \
fi
$(GAMEDIR)/mush.cnf: game/mushcnf.dst
-@@TOUCH@ game/mushcnf.dst
-@@PERL@ utils/update-cnf.pl $(GAMEDIR)/mush.cnf game/mushcnf.dst
update: update-hdr update-conf
update-hdr:
-@@TOUCH@ options.h.dist
-@sleep 2
-@@PERL@ utils/update.pl options.h options.h.dist
test: netmud
(cd test; @PERL@ alltests.pl)
clean:
(cd src; make clean)
(cd game; rm -f netmush info_slave)
distclean:
(cd hdrs; rm -f *.orig *~ \#* *.rej *.bak funs.h cmds.h buildinf.h)
(cd utils; rm -f *.orig *~ \#* *.rej *.bak mkcmds.sh *.o)
(cd game; rm -rf *.log netmush info_slave *.orig *.rej *~ *.bak mush.cnf)
(cd src; make distclean; rm -f Makefile)
(cd game/txt; make clean)
(rm -rf .config Makefile config.h config.sh options.h)
totallyclean: distclean
(cd hdrs; rm -rf *.rej)
(cd src; rm -rf *.rej)
-rm -f Makefile
commit: indent
@svn commit
patch: versions
@make-patch-header
@make diffs
etags:
(cd src; make etags)
ctags:
(cd src; make ctags)
cscope:
cscope *.h hdrs/*.h src/*.c
touchswitches:
@@TOUCH@ src/SWITCHES
globalinstall: install
(cd game/txt; make clean compose.sh)
# $(INSTALLDIR) $(GLOBAL_INSTALL)
$(CP) -R game/* $(GLOBAL_INSTALL)
rm -f $(GLOBAL_INSTALL)/netmush $(GLOBAL_INSTALL)/info_slave
$(INSTALL) config.sh $(GLOBAL_INSTALL)/config.sh
$(INSTALL) src/netmud $(GLOBAL_INSTALL)/netmush
$(INSTALL) src/info_slave utils/ln-dir.sh $(GLOBAL_INSTALL)
$(CHMOD) a+rX -R $(GLOBAL_INSTALL)
@echo "** Files installed in $(GLOBAL_INSTALL). Feel free to move them."
@echo "** You can run $(GLOBAL_INSTALL)/ln-dir.sh to create a user directory,"
@echo "** or symlink that to somewhere easier to run. You may wish to strip them."