FBNeo/makefile

121 lines
3.0 KiB
Makefile
Raw Normal View History

2020-07-08 23:20:02 +00:00
# Main Makefile for FBNeo, execute an appropriate system-specific makefile
2011-12-03 20:27:59 +00:00
export
#
# Declare variables
#
# Make a special build, pass the quoted text as comment (use FORCE_UPDATE declaration below to force recompilation of resources)
# SPECIALBUILD = "This text will appear in the property sheet of the .exe file"
#
# Flags. Uncomment any of these declarations to enable their function.
#
# Include Unicode support
2012-01-01 21:43:29 +00:00
UNICODE = 1
2011-12-03 20:27:59 +00:00
# Build A68K ASM 68000 core
#BUILD_A68K = 1
2011-12-03 20:27:59 +00:00
# Include x86 Assembly routines
2012-01-01 21:43:29 +00:00
BUILD_X86_ASM = 1
2011-12-03 20:27:59 +00:00
# Include GCC optmisations for your CPU e.g use -march=native. WARNING: This might mean that the generated binaries will not run on other peoples (older) machines!
#BUILD_NATIVE = 1
2011-12-03 20:27:59 +00:00
# Build for x64 targets (MinGW64 and MSVC only, this will undefine BUILD_A68K and BUILD_X86_ASM)
#BUILD_X64_EXE = 1
2015-08-02 19:16:36 +00:00
# Build for Windows XP target (for use with Visual Studio 2012-15)
2013-11-29 19:36:24 +00:00
#BUILD_VS_XP_TARGET = 1
# Include 7-zip support
INCLUDE_7Z_SUPPORT = 1
# Include AVI recording support (uses Video For Windows)
INCLUDE_AVI_RECORDING = 1
# Include LUA support (on Windows Standalone, LUA is enabled regardless)
#INCLUDE_LUA_SUPPORT = 1
2011-12-03 20:27:59 +00:00
# Include symbols and other debug information in the executable
#SYMBOL = 1
2011-12-03 20:27:59 +00:00
# Include features for debugging drivers unless we are doing a release build
ifndef RELEASEBUILD
2011-12-03 20:29:12 +00:00
DEBUG = 1
2019-08-03 02:14:36 +00:00
endif
2011-12-03 20:27:59 +00:00
# Include rom set verifying features (comment this for release builds)
#ROM_VERIFY = 1
2011-12-03 20:27:59 +00:00
# Force recompilation of files that need it (i.e. use __TIME__, __DATE__, SPECIALBUILD).
FORCE_UPDATE = 1
# Use the __fastcall calling convention when interfacing with A68K/Musashi/Doze
2012-01-01 21:43:29 +00:00
FASTCALL = 1
2011-12-03 20:27:59 +00:00
# Compress executable with upx (the DEBUG option ignores this)
# COMPRESS = 1
# Perl is available
PERL = 1
# Endianness
LSB_FIRST = 1
# Include png.h from burner.h
INCLUDE_LIB_PNGH = 1
# Enable CRT resolution switching
# INCLUDE_SWITCHRES = 1
2011-12-03 20:27:59 +00:00
#
# execute an appropriate system-specific makefile
#
mingw345: FORCE
@$(MAKE) -s -f makefile.mingw GCC345=1
mingw452: FORCE
@$(MAKE) -s -f makefile.mingw GCC452=1
2020-01-23 22:01:59 +00:00
2012-11-16 20:52:52 +00:00
mingw471: FORCE
@$(MAKE) -s -f makefile.mingw GCC471=1
2020-01-23 22:01:59 +00:00
mingw510: FORCE
@$(MAKE) -s -f makefile.mingw GCC510=1
# MinGW w/gcc 5.1.x to gcc 11.x (present)
# note: BORKYCRT fixes swprintf() which MSYS2 broke some time 2021
mingw: FORCE
@$(MAKE) -s -f makefile.mingw GCC510=1 BORKYCRT=1
2022-01-23 08:10:21 +00:00
# Cross compile a 32 bits windows binary from linux
mingwcc: FORCE
2022-01-23 08:10:21 +00:00
@$(MAKE) -s -f makefile.mingw GCC510=1 BORKYCRT=1 HOST_CC=gcc HOST_CXX=g++ CC=i686-w64-mingw32-gcc CXX=i686-w64-mingw32-g++ WINDRES=i686-w64-mingw32-windres
2011-12-03 20:27:59 +00:00
2022-02-15 08:19:53 +00:00
# Cross compile a 64 bits windows binary from linux
2022-02-14 12:14:39 +00:00
mingwcc64: FORCE
@$(MAKE) -s -f makefile.mingw BUILD_X64_EXE=1 GCC510=1 BORKYCRT=1 HOST_CC=gcc HOST_CXX=g++ CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ WINDRES=x86_64-w64-mingw32-windres
mamemingw: FORCE
@$(MAKE) -s -f makefile.mamemingw
2012-01-01 21:43:29 +00:00
sdl: FORCE
2011-12-03 20:27:59 +00:00
@$(MAKE) -s -f makefile.sdl
2020-01-23 22:01:59 +00:00
sdl2: FORCE
@$(MAKE) -s -f makefile.sdl2
2011-12-03 20:27:59 +00:00
vc: FORCE
@$(MAKE) -s -f makefile.vc
2019-10-08 22:24:40 +00:00
pi: FORCE
@$(MAKE) -s -f makefile.pi
FORCE: