Useless copy of an old version of Makefile, remove.

This commit is contained in:
Markus Armbruster 2004-02-06 23:34:21 +00:00
parent f4173aaa47
commit abe89a8596

View file

@ -1,96 +0,0 @@
#
# Empire - A multi-player, client/server Internet based war game.
# Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
# Ken Stevens, Steve McClure
#
# This program 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
# (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
#
# ---
#
# See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
# related information and legal notices. It is expected that any future
# projects/authors will amend these files as needed.
#
#
# Empire front end Makefile
# (server mode)
#
include ../../build.conf
include ../make.src
include ../make.defs
CFILES = bit.c dtable.c expect.c globals.c handle.c host.c \
hpux.c ioqueue.c ipglob.c login.c main.c queue.c saveargv.c \
servcmd.c serverio.c tags.c termio.c termlib.c
OFILES = bit.o dtable.o expect.o globals.o handle.o host.o \
hpux.o ioqueue.o ipglob.o login.o main.o queue.o saveargv.o \
servcmd.o serverio.o tags.o termio.o termlib.o
OBJFILES = bit.obj dtable.obj expect.obj globals.obj handle.obj host.obj \
hpux.obj ioqueue.obj ipglob.obj login.obj main.obj queue.obj saveargv.obj \
servcmd.obj serverio.obj tags.obj termio.obj termlib.obj
CLIENTLIBS= -ltermlib
#
# Change this line to the compiler you are going to use.
#
all: emp_client
emp_client: $(OFILES)
$(CC) -o emp_client $(OFILES) $(LFLAGS) $(CLIENTLIBS) -lc
nt: emp_client.exe
emp_client.exe: $(OBJFILES) $(CFILES)
link /OUT:emp_client.exe \
/PDB:emp_client.pdb /NOLOGO \
/NOD /DEBUG:full /DEBUGTYPE:cv /MACHINE:IX86 /NOLOGO \
$(OBJFILES) \
kernel32.lib \
wsock32.lib \
libcmt.lib \
oldnames.lib
# cl /D_WIN32 /Feemp_client.exe $(CFILES) wsock32.lib
dgux: $(OFILES)
$(CC) $(CFLAGS) -dn -o emp_client $(OFILES) -lsocket -lnsl -ltermcap -lc
solaris:
$(MAKE) emp_client CLIENTLIBS="-lsocket -lnsl -ltermcap -lc"
hpux:
$(MAKE) emp_client CLIENTLIBS=-ltermcap
clean:
-(rm -f $(OBJS))
-(rm -f emp_client)
-(del /q $(OBJFILES))
-(del /q emp_client.exe)
-(del /q emp_client.ilk)
-(del /q emp_client.pdb)
install:
-(mkdir $(EMPDIR)/bin)
cp emp_client $(EMPDIR)/bin
ntinstall:
copy emp_client.exe $(EMPDIR)\bin
include ../make.rules
include Makedepend