]> 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-2017, Dave Pare, Jeff Bailey, Thomas Ruschak,
4 #                 Ken Stevens, Steve McClure, Markus Armbruster
5 #
6 #   Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18 #
19 #   ---
20 #
21 #   See files README, COPYING and CREDITS in the root of the source
22 #   tree for related information and legal notices.  It is expected
23 #   that future projects/authors will amend these files as needed.
24 #
25 #   ---
26 #
27 #   @configure_input@
28 #   Makefile.in: Makefile template for configure
29 #
30 #   Known contributors to this file:
31 #      Markus Armbruster, 2005-2015
32 #
33
34 CC = @CC@
35 CFLAGS = @CFLAGS@ @CPPFLAGS@ @DEFS@ -I.
36 LDFLAGS = @LDFLAGS@
37 LIBOBJS = @LIBOBJS@
38 LIBS = @LIBS@
39 E = @EXEEXT@
40 O = @OBJEXT@
41
42 INSTALL = @INSTALL@
43 INSTALL_DATA = @INSTALL_DATA@
44 INSTALL_PROGRAM = @INSTALL_PROGRAM@
45
46 prefix = @prefix@
47 exec_prefix = @exec_prefix@
48 bindir = @bindir@
49 datarootdir = @datarootdir@
50 mandir = @mandir@
51
52 srcdir = @srcdir@
53 VPATH = @srcdir@
54
55 prog = empire$E
56 obj = expect.$O fnameat.$O host.$O ipglob.$O linebuf.$O login.$O        \
57 main.$O play.$O ringbuf.$O secure.$O servcmd.$O termlib.$O version.$O   \
58 $(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: fnameat.h 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