]> git.pond.sub.org Git - empserver/blobdiff - src/client/Makefile.in
src/client/Makefile.in: Avoid :=, it breaks traditional make
[empserver] / src / client / Makefile.in
index 6c8b0a0533cad04290a8e3f8fbdb7b6ff7a818b3..ca7a6e73f6b7fa2b7c1ceb82acdb04d237b8f9f1 100644 (file)
@@ -1,52 +1,52 @@
-# 
+#
 #   Empire - A multi-player, client/server Internet based war game.
-#   Copyright (C) 1986-2007, Dave Pare, Jeff Bailey, Thomas Ruschak,
-#                            Ken Stevens, Steve McClure
-# 
-#   This program is free software; you can redistribute it and/or modify
+#   Copyright (C) 1986-2013, Dave Pare, Jeff Bailey, Thomas Ruschak,
+#                 Ken Stevens, Steve McClure, Markus Armbruster
+#
+#   Empire is free software: you can redistribute it and/or modify
 #   it under the terms of the GNU General Public License as published by
-#   the Free Software Foundation; either version 2 of the License, or
+#   the Free Software Foundation, either version 3 of the License, or
 #   (at your option) any later version.
-# 
+#
 #   This program is distributed in the hope that it will be useful,
 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 #   GNU General Public License for more details.
-# 
+#
 #   You should have received a copy of the GNU General Public License
-#   along with this program; if not, write to the Free Software
-#   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-# 
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
 #   ---
-# 
+#
 #   See files README, COPYING and CREDITS in the root of the source
 #   tree for related information and legal notices.  It is expected
 #   that future projects/authors will amend these files as needed.
-# 
+#
 #   ---
-# 
+#
 #   @configure_input@
 #   Makefile.in: Makefile template for configure
-#  
+#
 #   Known contributors to this file:
-#      Markus Armbruster, 2005-2006
-# 
+#      Markus Armbruster, 2005-2009
+#
 
 CC = @CC@
 CFLAGS = @CFLAGS@ @CPPFLAGS@ @DEFS@ -I.
 LDFLAGS = @LDFLAGS@
+LIBOBJS = @LIBOBJS@
 LIBS = @LIBS@
 E = @EXEEXT@
 O = @OBJEXT@
 
 INSTALL = @INSTALL@
-INSTALL_DATA := @INSTALL_DATA@
-INSTALL_PROGRAM := @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
 prefix = @prefix@
 exec_prefix = @exec_prefix@
 bindir = @bindir@
-datarootdir := @datarootdir@
+datarootdir = @datarootdir@
 mandir = @mandir@
 
 srcdir = @srcdir@
@@ -54,12 +54,12 @@ VPATH = @srcdir@
 
 prog = empire$E
 obj = expect.$O host.$O ipglob.$O linebuf.$O login.$O main.$O play.$O  \
-ringbuf.$O secure.$O servcmd.$O termlib.$O version.$O
+ringbuf.$O secure.$O servcmd.$O termlib.$O version.$O $(LIBOBJS)
 
 all: $(prog)
 
 $(prog): $(obj)
-       $(CC) $(CFLAGS) $(LDFLAGS) -o empire $(obj) $(LIBS)
+       $(CC) $(CFLAGS) $(LDFLAGS) -o $(prog) $(obj) $(LIBS)
 
 clean:
        rm -f $(obj) $(prog)
@@ -79,7 +79,7 @@ uninstall:
        rm $(mandir)/man6/empire.6
 
 # FIXME generate from .d
-expect.$O: misc.h
+expect.$O: misc.h proto.h
 host.$O: misc.h
 linebuf.$O: linebuf.h
 login.$O: misc.h proto.h
@@ -91,3 +91,12 @@ servcmd.$O: misc.h proto.h secure.h
 termlib.$O: misc.h
 version.$O: version.h
 $(obj): config.h
+
+expect.$O: w32/sys/socket.h w32/unistd.h w32/w32types.h
+host.$O: w32/sys/socket.h w32/netinet/in.h w32/arpa/inet.h w32/netdb.h w32/unistd.h w32/w32types.h
+login.$O: w32/unistd.h w32/w32types.h
+main.$O: w32/sys/socket.h w32/unistd.h w32/w32types.h
+play.$O: w32/sys/socket.h w32/unistd.h w32/w32types.h
+ringbuf.$O: w32/sys/uio.h w32/w32types.h
+w32/w32io.$O: misc.h w32/sys/uio.h w32/w32types.h
+w32/w32sockets.$O: w32/sys/socket.h w32/unistd.h w32/w32types.h