This repository has been archived by the owner on Feb 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.cnf.in
68 lines (46 loc) · 1.66 KB
/
Makefile.cnf.in
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Makefile configuration for Hatari.
# Set the C compiler (e.g. gcc)
CC = @CC@
# Set flags passed to the compiler (e.g. optimization flags)
CFLAGS = @CFLAGS@ @X_CFLAGS@
# Set flags passed to the preprocessor (e.g. -I<include dir>)
CPPFLAGS = @CPPFLAGS@
# Additional libraries and linker flags:
LIBS = @LIBS@ @X_LIBS@
LDFLAGS = @LDFLAGS@
# Ranlib - for generating an index of an archive
RANLIB = @RANLIB@
# The native C compiler.
# This is normaly the same as $(CC) unless you are using a cross compiler.
HOSTCC = @HOSTCC@
# Native C compiler flags:
HOSTCFLAGS = @HOSTCFLAGS@
# Native linker flags:
HOSTLDFLAGS = @HOSTLDFLAGS@
# SDL-Library configuration (compiler flags and linker options)
SDL_CFLAGS = @SDL_CFLAGS@
SDL_LIBS = @SDL_LIBS@
# Various autoconf variables (paths, directories, etc.):
prefix = @prefix@
exec_prefix = @exec_prefix@
datarootdir = @datarootdir@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
# Here you can define the default data directory for Hatari.
# The emulator looks there for the default TOS image etc.
# For example you can use the local directory with "." or if you want
# a system-wide installation, use something like "/usr/share/hatari".
DATADIR = @datadir@
# In this folder, Hatari searches the global configuration file.
# /etc or /usr/local/etc is a good place for this.
CONFDIR = @sysconfdir@
# The executable will be installed in BINDIR
BINDIR = @bindir@
# The man-page will be install in MANDIR
MANDIR = @mandir@/man1
# All other documentation will be installed in DOCDIR
DOCDIR = @docdir@
# Program used for "make install"
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@ -s
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_DATA = @INSTALL_DATA@