]> jfr.im git - irc/gameservirc.git/blame - gameserv/Makefile.in
Added a file pouch.h which contains an inventory class Pouch to be used for carrying...
[irc/gameservirc.git] / gameserv / Makefile.in
CommitLineData
c1068b6e 1SHELL = /bin/sh
2VPATH = @srcdir@
3
4subdirs = @subdirs@
5top_srcdir = @top_srcdir@
6srcdir = @srcdir@
7prefix = @prefix@
8exec_prefix = @exec_prefix@
9bindir = $(exec_prefix)/bin
10infodir = $(prefix)/info
11libdir = $(prefix)/lib/gnudl
12mandir = $(prefix)/man/man1
13
ee05c957 14CC = @CXX@
dff2bbf4 15CPPFLAGS = -Wno-deprecated -Wall @CPPFLAGS@
c1068b6e 16CFLAGS = $(CPPFLAGS) @CFLAGS@
17LDFLAGS = @LDFLAGS@
18LIBS = @LIBS@
19INSTALL = @INSTALL@
20
ee05c957 21all: tcpclient
c1068b6e 22
23clean:
24 /bin/rm -f *.o
25
26distclean: clean
c7340cbd 27 /bin/rm -f Makefile config.h config.status config.cache config.log \
b0a5c536 28 options.h gameserv .config .gstimestamp
c1068b6e 29
30tcpclient: aClient.o config.o c_forest.o gameserv.o player.o sockhelp.o tcpclient.o
31 $(CC) -o gameserv aClient.o config.o c_forest.o gameserv.o player.o sockhelp.o\
32 tcpclient.o $(LIBS)
33
b0a5c536 34configscript: configscript.o
35 $(CC) -o .config configscript.o
36
37configscript.o: configscript.cpp
38 $(CC) $(CFLAGS) -c configscript.cpp
39
3662210f 40tcpclient.o: tcpclient.cpp aClient.h player.h pouch.h extern.h list.h \
41 listnode.h options.h sockhelp.h
c1068b6e 42 $(CC) $(CFLAGS) -c tcpclient.cpp
43
44tcpserver.o: tcpserver.cpp sockhelp.cpp
45 $(CC) $(CFLAGS) -c tcpserver.cpp
46
173302fe 47sockhelp.o: sockhelp.cpp aClient.h extern.h list.h listnode.h \
3662210f 48 player.h pouch.h sockhelp.h
c1068b6e 49 $(CC) $(CFLAGS) -c sockhelp.cpp
50
173302fe 51aClient.o: aClient.cpp aClient.h extern.h list.h listnode.h \
3662210f 52 player.h pouch.h sockhelp.h
c1068b6e 53 $(CC) $(CFLAGS) -c aClient.cpp
54
173302fe 55gameserv.o: gameserv.cpp aClient.h extern.h flags.h list.h\
3662210f 56 listnode.h player.h pouch.h sockhelp.h
c1068b6e 57 $(CC) $(CFLAGS) -c gameserv.cpp
58
173302fe 59c_forest.o: c_forest.cpp aClient.h extern.h list.h\
3662210f 60 listnode.h player.h pouch.h sockhelp.h
c1068b6e 61 $(CC) $(CFLAGS) -c c_forest.cpp
62
3662210f 63player.o: player.cpp aClient.h extern.h list.h listnode.h player.h \
64 pouch.h sockhelp.h
c1068b6e 65 $(CC) $(CFLAGS) -c player.cpp
66
67config.o: config.cpp extern.h
68 $(CC) $(CFLAGS) -c config.cpp
69
c1068b6e 70# autoheader might not change config.h.in, so touch a stamp file
71${srcdir}/config.h.in: stamp-h.in
72
b27bbf6e 73${srcdir}/stamp-h.in:
c1068b6e 74 cd ${srcdir} && autoheader
75 echo timestamp > ${srcdir}/stamp-h.in
76
77config.h: stamp-h
78
79stamp-h: config.h.in config.status
80 ./config.status
81
82Makefile: Makefile.in config.status
83 ./config.status
84
85config.status: configure
86 ./config.status --recheck