]> jfr.im git - irc/gameservirc.git/blame - gameserv/Makefile.in
Removed myString class and replaced with use of the STL string class...
[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@
fb37ecc7 15CPPFLAGS = -Wall @CPPFLAGS@
c1068b6e 16CFLAGS = $(CPPFLAGS) @CFLAGS@
17LDFLAGS = @LDFLAGS@
18LIBS = @LIBS@
19INSTALL = @INSTALL@
20
b5fb1cc5 21SRCS = aClient.cpp \
22 config.cpp \
23 c_forest.cpp \
24 gameserv.cpp \
c260a8d7 25 hash.cpp \
ea93c39a 26 level.cpp \
b5fb1cc5 27 log.cpp \
c260a8d7 28 news.cpp \
b5fb1cc5 29 player.cpp \
30 sockhelp.cpp \
31 tcpclient.cpp
32
33OBJS = ${SRCS:.cpp=.o}
34
35all: gameserv
c1068b6e 36
37clean:
38 /bin/rm -f *.o
39
40distclean: clean
c7340cbd 41 /bin/rm -f Makefile config.h config.status config.cache config.log \
b0a5c536 42 options.h gameserv .config .gstimestamp
c1068b6e 43
b5fb1cc5 44gameserv: $(OBJS)
45 $(CC) -o $@ $(OBJS) $(LIBS)
c1068b6e 46
b5fb1cc5 47.cpp.o:
48 $(CC) $(CFLAGS) -c $<
c1068b6e 49
b5fb1cc5 50depend:
51 $(CC) -MM $(CFLAGS) $(SRCS) > .depend
c1068b6e 52
b5fb1cc5 53configscript: configscript.o
54 $(CC) -o .config configscript.o
c1068b6e 55
b5fb1cc5 56# Catch any changes in the Makefile, everything depends on it.
57$(OBJS): Makefile
c1068b6e 58
b5fb1cc5 59include .depend