]> jfr.im git - irc/gameservirc.git/blame - gameserv/Makefile.in
Switched the hybrid contrib files to an updated version for configscript. Thank you...
[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
173302fe 40tcpclient.o: tcpclient.cpp aClient.h player.h extern.h list.h listnode.h \
41 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 \
48 player.h sockhelp.h
c1068b6e 49 $(CC) $(CFLAGS) -c sockhelp.cpp
50
173302fe 51aClient.o: aClient.cpp aClient.h extern.h list.h listnode.h \
52 player.h sockhelp.h
c1068b6e 53 $(CC) $(CFLAGS) -c aClient.cpp
54
173302fe 55gameserv.o: gameserv.cpp aClient.h extern.h flags.h list.h\
56 listnode.h player.h sockhelp.h
c1068b6e 57 $(CC) $(CFLAGS) -c gameserv.cpp
58
173302fe 59c_forest.o: c_forest.cpp aClient.h extern.h list.h\
60 listnode.h player.h sockhelp.h
c1068b6e 61 $(CC) $(CFLAGS) -c c_forest.cpp
62
173302fe 63player.o: player.cpp aClient.h extern.h list.h listnode.h player.h sockhelp.h
c1068b6e 64 $(CC) $(CFLAGS) -c player.cpp
65
66config.o: config.cpp extern.h
67 $(CC) $(CFLAGS) -c config.cpp
68
c1068b6e 69# autoheader might not change config.h.in, so touch a stamp file
70${srcdir}/config.h.in: stamp-h.in
71
b27bbf6e 72${srcdir}/stamp-h.in:
c1068b6e 73 cd ${srcdir} && autoheader
74 echo timestamp > ${srcdir}/stamp-h.in
75
76config.h: stamp-h
77
78stamp-h: config.h.in config.status
79 ./config.status
80
81Makefile: Makefile.in config.status
82 ./config.status
83
84config.status: configure
85 ./config.status --recheck