File: 0compile.txt

package info (click to toggle)
grfcodec 6.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,084 kB
  • ctags: 1,717
  • sloc: cpp: 12,622; ansic: 748; makefile: 196; perl: 132; sh: 77
file content (46 lines) | stat: -rw-r--r-- 1,404 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
How to compile the GRF development tools
-----------------------

Compiling the GRF development tools is pretty straightforward. It can be
done, with varying quantities of automation, with Cygwin's gcc (using
Makefile for a cygwin-dependant binary, any Linux gcc (using Makefile,
for a Linux binary).

GRFCodec and NFORenum require Boost 1.36 or higher. The make system does
not check the Boost version, so compiling with a lower version of Boost
will result in compile failures.

GRFCodec and NFORenum can optionally be compiled with PNG support.
This requires libpng and zlib to be available.


Compiling with make
===================

The Makefile will attempt to auto-detect:
- Whether you are building on Cygwin or Linux (ISCYGWIN)
- The location of your boost includes (BOOST_INCLUDE)

If it gets these wrong, modify Makefile.local appropriately, or set the above
mentioned controlling variables.
ISCYGWIN: 1 on cygwin and 0 on Linux.
BOOST_INCLUDE is the directory where your boost headers can be found.


Targets
-------

The following are the most intersting targets. Other targets exist, but are
less useful.

all       Compile grfcodec, grfid, grfstrip and nforenum

grfcodec
grfid
grfstrip
nforenum  Compile the program in question, using gcc.

release   Compile all programs, then strip and upx them (if enabled)

clean     Delete all compiled files
remake    Equivalent of "make clean all"