]> git.pond.sub.org Git - empserver/blob - src/util/Makefile
(nati, player_coms): Add ability for deities to request a nation report for any country.
[empserver] / src / util / Makefile
1
2 #   Empire - A multi-player, client/server Internet based war game.
3 #   Copyright (C) 1986-2005, 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 the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23 #   related information and legal notices. It is expected that any future
24 #   projects/authors will amend these files as needed.
25
26 # Makefile - Wolfpack, 1996
27
28 # Note that these could have been listed 1 per line, but I chose to just
29 # stick them all together this way to shorten the file.
30
31 include ../../build.conf
32 include ../make.src
33 include ../make.defs
34
35 LIBDIR = $(SRCDIR)/lib
36
37 LIBS = $(LIBDIR)/libcommon.a \
38        $(LIBDIR)/libgen.a \
39        $(LIBDIR)/libglobal.a
40
41 NTLIBS = $(LIBDIR)\libcommon.lib \
42        $(LIBDIR)\libgen.lib \
43        $(LIBDIR)\libglobal.lib
44
45 OBJS = fairland.o files.o pconfig.o
46
47 NTOBJS = fairland.obj files.obj pconfig.obj
48
49 nt: ntfairland ntfiles ntpconfig
50
51 all: fairland files pconfig
52
53 osx: fairland files pconfig
54
55 ntfiles: files.obj
56         link /OUT:files.exe \
57         /NOD /DEBUG:full /DEBUGTYPE:cv /MACHINE:IX86 /NOLOGO \
58         files.obj $(NTLIBS) \
59         kernel32.lib \
60         wsock32.lib \
61         libcmt.lib \
62         oldnames.lib
63
64 files: files.o
65         $(CC) -o files $(IFLAGS) $(CFLAGS) files.o $(LIBS) $(LFLAGS) -lc
66
67 fairland: fairland.o
68         $(CC) -o fairland $(IFLAGS) $(CFLAGS) fairland.o $(LIBS) $(LFLAGS) -lc
69
70 ntfairland: fairland.obj
71         link /OUT:fairland.exe \
72         /NOD /DEBUG:full /DEBUGTYPE:cv /MACHINE:IX86 /NOLOGO \
73         fairland.obj $(NTLIBS) \
74         kernel32.lib \
75         wsock32.lib \
76         libcmt.lib \
77         oldnames.lib
78
79 pconfig: pconfig.o
80         $(CC) -o pconfig $(IFLAGS) $(CFLAGS) pconfig.o $(LIBS) $(LFLAGS) -lc
81
82 ntpconfig: pconfig.obj
83         link /OUT:pconfig.exe \
84         /NOD /DEBUG:full /DEBUGTYPE:cv /MACHINE:IX86 /NOLOGO \
85         pconfig.obj $(NTLIBS) \
86         kernel32.lib \
87         wsock32.lib \
88         libcmt.lib \
89         oldnames.lib
90
91 clean:
92         -(rm -f files fairland pconfig $(OBJS))
93         -(del /q *.exe *.pdb *.ilk $(NTOBJS))
94
95 install:
96         -(mkdir $(EMPDIR)/bin)
97         -(cp files $(EMPDIR)/bin)
98         -(cp fairland $(EMPDIR)/bin)
99         -(cp pconfig $(EMPDIR)/bin)
100
101 ntinstall:
102         -(mkdir $(NTINSTDIR)\bin)
103         -(copy files.exe $(NTINSTDIR)\bin)
104         -(copy fairland.exe $(NTINSTDIR)\bin)
105         -(copy pconfig.exe $(NTINSTDIR)\bin)
106
107 include ../make.rules
108 include Makedepend