]> git.pond.sub.org Git - empserver/blob - src/client/Makefile.in
Update copyright notice
[empserver] / src / client / Makefile.in
1 #
2 #   Empire - A multi-player, client/server Internet based war game.
3 #   Copyright (C) 1986-2010, Dave Pare, Jeff Bailey, Thomas Ruschak,
4 #                            Ken Stevens, Steve McClure
5 #
6 #   This program is free software; you can redistribute it and/or modify
7 #   it under the terms of the GNU General Public License as published by
8 #   the Free Software Foundation; either version 2 of the License, or
9 #   (at your option) any later version.
10 #
11 #   This program is distributed in the hope that it will be useful,
12 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #   GNU General Public License for more details.
15 #
16 #   You should have received a copy of the GNU General Public License
17 #   along with this program; if not, write to the Free Software
18 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 #
20 #   ---
21 #
22 #   See files README, COPYING and CREDITS in the root of the source
23 #   tree for related information and legal notices.  It is expected
24 #   that future projects/authors will amend these files as needed.
25 #
26 #   ---
27 #
28 #   @configure_input@
29 #   Makefile.in: Makefile template for configure
30 #
31 #   Known contributors to this file:
32 #      Markus Armbruster, 2005-2009
33 #
34
35 CC = @CC@
36 CFLAGS = @CFLAGS@ @CPPFLAGS@ @DEFS@ -I.
37 LDFLAGS = @LDFLAGS@
38 LIBOBJS := @LIBOBJS@
39 LIBS = @LIBS@
40 E = @EXEEXT@
41 O = @OBJEXT@
42
43 INSTALL = @INSTALL@
44 INSTALL_DATA := @INSTALL_DATA@
45 INSTALL_PROGRAM := @INSTALL_PROGRAM@
46
47 prefix = @prefix@
48 exec_prefix = @exec_prefix@
49 bindir = @bindir@
50 datarootdir := @datarootdir@
51 mandir = @mandir@
52
53 srcdir = @srcdir@
54 VPATH = @srcdir@
55
56 prog = empire$E
57 obj = expect.$O host.$O ipglob.$O linebuf.$O login.$O main.$O play.$O   \
58 ringbuf.$O secure.$O servcmd.$O termlib.$O version.$O $(LIBOBJS)
59
60 all: $(prog)
61
62 $(prog): $(obj)
63         $(CC) $(CFLAGS) $(LDFLAGS) -o $(prog) $(obj) $(LIBS)
64
65 clean:
66         rm -f $(obj) $(prog)
67
68 distclean: clean
69         rm -rf autom4te.cache config.h config.log config.status Makefile ipglob.c
70
71 install: all installdirs
72         $(INSTALL_PROGRAM) empire $(bindir)/empire
73         $(INSTALL_DATA) $(srcdir)/empire.6 $(mandir)/man6/empire.6
74
75 installdirs:
76         $(INSTALL) -d $(bindir) $(mandir)/man6
77
78 uninstall:
79         rm $(bindir)/empire
80         rm $(mandir)/man6/empire.6
81
82 # FIXME generate from .d
83 expect.$O: misc.h proto.h
84 host.$O: misc.h
85 linebuf.$O: linebuf.h
86 login.$O: misc.h proto.h
87 main.$O: misc.h version.h
88 play.$O: linebuf.h misc.h proto.h ringbuf.h secure.h
89 ringbuf.$O: ringbuf.h
90 secure.$O: ringbuf.h secure.h
91 servcmd.$O: misc.h proto.h secure.h
92 termlib.$O: misc.h
93 version.$O: version.h
94 $(obj): config.h
95
96 expect.$O: w32/sys/socket.h w32/unistd.h w32/w32types.h
97 host.$O: w32/sys/socket.h w32/netinet/in.h w32/arpa/inet.h w32/netdb.h w32/unistd.h w32/w32types.h
98 login.$O: w32/unistd.h w32/w32types.h
99 main.$O: w32/sys/socket.h w32/unistd.h w32/w32types.h
100 play.$O: w32/sys/socket.h w32/unistd.h w32/w32types.h
101 ringbuf.$O: w32/sys/uio.h w32/w32types.h
102 w32/w32io.$O: misc.h w32/sys/uio.h w32/w32types.h
103 w32/w32sockets.$O: w32/sys/socket.h w32/unistd.h w32/w32types.h