]> jfr.im git - irc/gameservirc.git/blame - gameserv/Makefile.in
Changed version to 1.2.4+devel
[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 \
accc7c20 28 myString.cpp \
c260a8d7 29 news.cpp \
b5fb1cc5 30 player.cpp \
31 sockhelp.cpp \
32 tcpclient.cpp
33
34OBJS = ${SRCS:.cpp=.o}
35
36all: gameserv
c1068b6e 37
38clean:
39 /bin/rm -f *.o
40
41distclean: clean
c7340cbd 42 /bin/rm -f Makefile config.h config.status config.cache config.log \
b0a5c536 43 options.h gameserv .config .gstimestamp
c1068b6e 44
b5fb1cc5 45gameserv: $(OBJS)
46 $(CC) -o $@ $(OBJS) $(LIBS)
c1068b6e 47
b5fb1cc5 48.cpp.o:
49 $(CC) $(CFLAGS) -c $<
c1068b6e 50
b5fb1cc5 51depend:
52 $(CC) -MM $(CFLAGS) $(SRCS) > .depend
c1068b6e 53
b5fb1cc5 54configscript: configscript.o
55 $(CC) -o .config configscript.o
c1068b6e 56
b5fb1cc5 57# Catch any changes in the Makefile, everything depends on it.
58$(OBJS): Makefile
c1068b6e 59
b5fb1cc5 60include .depend