]> jfr.im git - irc/gameservirc.git/blame - gameserv/Makefile.in
Implemented the definitions for the new items class and added some declarations into...
[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 \
8f0f4c84 24 do_attack.cpp \
b5fb1cc5 25 gameserv.cpp \
c260a8d7 26 hash.cpp \
26b17386 27 item.cpp \
ea93c39a 28 level.cpp \
b5fb1cc5 29 log.cpp \
c260a8d7 30 news.cpp \
b5fb1cc5 31 player.cpp \
32 sockhelp.cpp \
33 tcpclient.cpp
34
35OBJS = ${SRCS:.cpp=.o}
36
37all: gameserv
c1068b6e 38
39clean:
40 /bin/rm -f *.o
41
42distclean: clean
c7340cbd 43 /bin/rm -f Makefile config.h config.status config.cache config.log \
b0a5c536 44 options.h gameserv .config .gstimestamp
c1068b6e 45
b5fb1cc5 46gameserv: $(OBJS)
47 $(CC) -o $@ $(OBJS) $(LIBS)
c1068b6e 48
b5fb1cc5 49.cpp.o:
50 $(CC) $(CFLAGS) -c $<
c1068b6e 51
b5fb1cc5 52depend:
53 $(CC) -MM $(CFLAGS) $(SRCS) > .depend
c1068b6e 54
b5fb1cc5 55configscript: configscript.o
56 $(CC) -o .config configscript.o
c1068b6e 57
b5fb1cc5 58# Catch any changes in the Makefile, everything depends on it.
59$(OBJS): Makefile
c1068b6e 60
b5fb1cc5 61include .depend