]> git.pond.sub.org Git - empserver/blob - src/client/Makefile.in
Use src/lib/w32/w32sockets.c for client
[empserver] / src / client / Makefile.in
1 #
2 #   Empire - A multi-player, client/server Internet based war game.
3 #   Copyright (C) 1986-2009, 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-2006
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 sysdep_w32.$O termlib.$O version.$O     \
59 $(LIBOBJS)
60
61 all: $(prog)
62
63 $(prog): $(obj)
64         $(CC) $(CFLAGS) $(LDFLAGS) -o $(prog) $(obj) $(LIBS)
65
66 clean:
67         rm -f $(obj) $(prog)
68
69 distclean: clean
70         rm -rf autom4te.cache config.h config.log config.status Makefile ipglob.c
71
72 install: all installdirs
73         $(INSTALL_PROGRAM) empire $(bindir)/empire
74         $(INSTALL_DATA) $(srcdir)/empire.6 $(mandir)/man6/empire.6
75
76 installdirs:
77         $(INSTALL) -d $(bindir) $(mandir)/man6
78
79 uninstall:
80         rm $(bindir)/empire
81         rm $(mandir)/man6/empire.6
82
83 # FIXME generate from .d
84 expect.$O: misc.h sysdep_w32.h proto.h
85 host.$O: misc.h sysdep_w32.h
86 linebuf.$O: linebuf.h
87 login.$O: misc.h sysdep_w32.h proto.h
88 main.$O: misc.h sysdep_w32.h version.h
89 play.$O: linebuf.h misc.h sysdep_w32.h proto.h ringbuf.h secure.h
90 ringbuf.$O: ringbuf.h
91 secure.$O: ringbuf.h secure.h
92 servcmd.$O: misc.h sysdep_w32.h proto.h secure.h
93 sysdep_w32.$O: misc.h sysdep_w32.h
94 termlib.$O: misc.h
95 version.$O: version.h
96 $(obj): config.h
97
98 expect.$O: w32/sys/socket.h w32/unistd.h w32/w32types.h
99 host.$O: w32/sys/socket.h w32/netinet/in.h w32/arpa/inet.h w32/netdb.h w32/unistd.h w32/w32types.h
100 login.$O: w32/unistd.h w32/w32types.h
101 main.$O: w32/unistd.h w32/w32types.h
102 play.$O: w32/sys/socket.h w32/unistd.h w32/w32types.h
103 ringbuf.$O: w32/sys/uio.h w32/w32types.h
104 sysdep_w32.$O: w32/sys/socket.h
105 w32/w32io.$O: misc.h w32/sys/uio.h w32/w32types.h
106 w32/w32sockets.$O: w32/sys/socket.h w32/unistd.h w32/w32types.h