# 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@ # Set flags passed to the preprocessor (e.g. -I) CPPFLAGS = @CPPFLAGS@ # Additional libraries and linker flags: LIBS = @LIBS@ LDFLAGS = @LDFLAGS@ # 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@ # Paths and directories prefix = @prefix@ exec_prefix = @exec_prefix@ datarootdir = @datarootdir@ # 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@ # Program used for "make install" INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ -s INSTALL_DATA = @INSTALL_DATA@