2009-08-29 23:09:22 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
2011-02-16 13:24:56 +00:00
|
|
|
include config.make
|
2009-11-14 16:18:23 +00:00
|
|
|
|
2009-08-29 23:09:22 +00:00
|
|
|
vpath %.m src/SDL:src/Core:src/Core/Entities:src/Core/Materials:src/Core/Scripting:src/Core/OXPVerifier:src/Core/Debug
|
2013-10-26 16:18:39 +01:00
|
|
|
vpath %.h src/SDL:src/Core:src/Core/Entities:src/Core/Materials:src/Core/Scripting:src/Core/OXPVerifier:src/Core/Debug:src/Core/MiniZip
|
|
|
|
vpath %.c src/SDL:src/Core:src/BSDCompat:src/Core/Debug:src/Core/MiniZip
|
2011-02-16 13:24:56 +00:00
|
|
|
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_USER_ROOT)
|
2012-04-01 13:27:36 +00:00
|
|
|
ifeq ($(GNUSTEP_HOST_OS),mingw32)
|
|
|
|
GNUSTEP_OBJ_DIR_NAME := $(GNUSTEP_OBJ_DIR_NAME).win
|
|
|
|
endif
|
2011-02-16 13:24:56 +00:00
|
|
|
GNUSTEP_OBJ_DIR_BASENAME := $(GNUSTEP_OBJ_DIR_NAME)
|
|
|
|
HOST_ARCH := $(shell echo $(GNUSTEP_HOST_CPU) | sed -e s/i.86/x86/ -e s/amd64/x86_64/ )
|
2019-06-09 13:17:15 +03:00
|
|
|
|
2009-08-29 23:09:22 +00:00
|
|
|
ifeq ($(GNUSTEP_HOST_OS),mingw32)
|
2019-06-09 13:17:15 +03:00
|
|
|
vpath %.rc src/SDL/OOResourcesWin
|
|
|
|
|
|
|
|
# ifeq ($(GNUSTEP_HOST_CPU),x86_64)
|
|
|
|
# WIN_DEPS_DIR = deps/Windows-deps/x86_64
|
|
|
|
# else
|
|
|
|
# WIN_DEPS_DIR = deps/Windows-deps/x86
|
|
|
|
# endif
|
|
|
|
|
|
|
|
WIN_DEPS_DIR = deps/Windows-deps/$(HOST_ARCH)
|
2013-10-31 09:06:57 +01:00
|
|
|
JS_INC_DIR = $(WIN_DEPS_DIR)/JS32ECMAv5/include
|
2019-06-09 13:17:15 +03:00
|
|
|
# JS_LIB_DIR = $(WIN_DEPS_DIR)/JS32ECMAv5/lib
|
2011-02-16 13:24:56 +00:00
|
|
|
ifeq ($(debug),yes)
|
|
|
|
JS_IMPORT_LIBRARY = js32ECMAv5dbg
|
|
|
|
else
|
|
|
|
JS_IMPORT_LIBRARY = js32ECMAv5
|
|
|
|
endif
|
2019-06-09 13:17:15 +03:00
|
|
|
|
2013-10-31 14:02:45 +00:00
|
|
|
ADDITIONAL_INCLUDE_DIRS = -I$(WIN_DEPS_DIR)/include -I$(JS_INC_DIR) -Isrc/SDL -Isrc/Core -Isrc/BSDCompat -Isrc/Core/Scripting -Isrc/Core/Materials -Isrc/Core/Entities -Isrc/Core/OXPVerifier -Isrc/Core/Debug -Isrc/Core/Tables -Isrc/Core/MiniZip
|
2019-06-09 13:17:15 +03:00
|
|
|
ADDITIONAL_OBJC_LIBS = -L$(WIN_DEPS_DIR)/lib -lglu32 -lopengl32 -lopenal32.dll -lpng14.dll -lmingw32 -lSDLmain -lSDL -lvorbisfile.dll -lvorbis.dll -lz -lgnustep-base -l$(JS_IMPORT_LIBRARY) -lwinmm -mwindows
|
2013-09-02 18:03:55 +02:00
|
|
|
ADDITIONAL_CFLAGS = -DWIN32 -DNEED_STRLCPY `sdl-config --cflags` -mtune=generic
|
2009-08-29 23:09:22 +00:00
|
|
|
# note the vpath stuff above isn't working for me, so adding src/SDL and src/Core explicitly
|
2013-09-02 18:03:55 +02:00
|
|
|
ADDITIONAL_OBJCFLAGS = -DLOADSAVEGUI -DWIN32 -DXP_WIN -Wno-import -std=gnu99 `sdl-config --cflags` -mtune=generic
|
2019-06-09 13:17:15 +03:00
|
|
|
ifneq ($(HOST_ARCH),x86_64)
|
|
|
|
ADDITIONAL_LDFLAGS += -Wl,--large-address-aware
|
|
|
|
# else
|
|
|
|
# ADDITIONAL_LDFLAGS +=
|
2013-10-31 09:06:57 +01:00
|
|
|
endif
|
2019-06-09 13:17:15 +03:00
|
|
|
# oolite_LIB_DIRS += -L$(GNUSTEP_LOCAL_ROOT)/lib -L$(WIN_DEPS_DIR)/lib -L$(JS_LIB_DIR)
|
|
|
|
|
2011-02-16 13:24:56 +00:00
|
|
|
ifeq ($(ESPEAK),yes)
|
|
|
|
ADDITIONAL_OBJC_LIBS += -lespeak.dll
|
|
|
|
ADDITIONAL_OBJCFLAGS +=-DHAVE_LIBESPEAK=1
|
|
|
|
GNUSTEP_OBJ_DIR_NAME := $(GNUSTEP_OBJ_DIR_NAME).spk
|
|
|
|
endif
|
2009-08-29 23:09:22 +00:00
|
|
|
else
|
2019-06-09 13:17:15 +03:00
|
|
|
LIBJS_DIR = deps/Linux-deps/$(HOST_ARCH)/mozilla
|
2019-06-09 14:37:02 +03:00
|
|
|
LIBJS_INC_DIR = deps/Linux-deps/$(HOST_ARCH)/mozilla/include
|
2019-06-09 13:17:15 +03:00
|
|
|
# Uncomment the following lines if you want to build JS from source. Ensure the relevant changes are performed in Makefile too
|
|
|
|
# ifeq ($(debug),yes)
|
|
|
|
# LIBJS_DIR = deps/mozilla/js/src/build-debug
|
|
|
|
# else
|
|
|
|
# LIBJS_DIR = deps/mozilla/js/src/build-release
|
|
|
|
# endif
|
|
|
|
# LIBJS_INC_DIR = $(LIBJS_DIR)/dist/include
|
2011-02-16 13:24:56 +00:00
|
|
|
ifeq ($(debug),yes)
|
2019-06-09 13:17:15 +03:00
|
|
|
LIBJS = jsdbg_static
|
|
|
|
# By default we don't share the debug version of JS library
|
|
|
|
# If you want to debug into JS, ensure a libjsdbg_static.a exists into $(LIBJS_DIR)
|
2011-02-16 13:24:56 +00:00
|
|
|
else
|
2019-06-09 13:17:15 +03:00
|
|
|
LIBJS = js_static
|
2011-02-16 13:24:56 +00:00
|
|
|
endif
|
2011-01-03 21:50:00 +00:00
|
|
|
|
2011-02-16 13:24:56 +00:00
|
|
|
ifeq ($(use_deps),yes)
|
2019-06-09 13:17:15 +03:00
|
|
|
OOLITE_SHARED_LIBS = -Ldeps/Linux-deps/$(HOST_ARCH)/lib_linker
|
2011-02-16 13:24:56 +00:00
|
|
|
endif
|
2019-06-09 13:17:15 +03:00
|
|
|
|
|
|
|
ADDITIONAL_INCLUDE_DIRS = -I$(LIBJS_INC_DIR) -Isrc/SDL -Isrc/Core -Isrc/BSDCompat -Isrc/Core/Scripting -Isrc/Core/Materials -Isrc/Core/Entities -Isrc/Core/OXPVerifier -Isrc/Core/Debug -Isrc/Core/Tables -Isrc/Core/MiniZip -Ideps/Linux-deps/include
|
|
|
|
ADDITIONAL_OBJC_LIBS = $(OOLITE_SHARED_LIBS) -lGLU -lGL -lX11 -lSDL -lgnustep-base -L$(LIBJS_DIR) -l$(LIBJS) -lopenal -lz -lvorbisfile -lpng `nspr-config --libs` -lstdc++
|
|
|
|
ADDITIONAL_OBJCFLAGS = -Wall -std=gnu99 -DLOADSAVEGUI -DLINUX -DXP_UNIX -Wno-import `sdl-config --cflags` `nspr-config --cflags`
|
|
|
|
ADDITIONAL_CFLAGS = -Wall -DLINUX -DNEED_STRLCPY `sdl-config --cflags` `nspr-config --cflags`
|
|
|
|
|
2011-02-16 13:24:56 +00:00
|
|
|
ifeq ($(ESPEAK),yes)
|
|
|
|
ADDITIONAL_OBJC_LIBS += -lespeak
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DHAVE_LIBESPEAK=1
|
|
|
|
GNUSTEP_OBJ_DIR_NAME := $(GNUSTEP_OBJ_DIR_NAME).spk
|
|
|
|
endif
|
2019-06-09 13:17:15 +03:00
|
|
|
# oolite_LIB_DIRS += -L$(LIBJS_LIB_DIR) -L/usr/X11R6/lib/
|
|
|
|
|
2011-02-16 13:24:56 +00:00
|
|
|
ifeq ($(OO_JAVASCRIPT_TRACE),yes)
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DMOZ_TRACE_JSCALLS=1
|
|
|
|
endif
|
2009-08-29 23:09:22 +00:00
|
|
|
endif
|
2011-01-03 21:50:00 +00:00
|
|
|
|
2009-10-17 15:03:05 +00:00
|
|
|
ifeq ($(profile),yes)
|
2011-02-16 13:24:56 +00:00
|
|
|
ADDITIONAL_CFLAGS += -g -pg
|
|
|
|
ADDITIONAL_OBJCFLAGS += -g -pg
|
2009-10-17 15:03:05 +00:00
|
|
|
endif
|
2009-08-29 23:09:22 +00:00
|
|
|
ifeq ($(debug),yes)
|
2011-02-16 13:24:56 +00:00
|
|
|
ADDITIONAL_CFLAGS += -g -O0
|
|
|
|
ADDITIONAL_OBJCFLAGS += -g -O0
|
|
|
|
GNUSTEP_OBJ_DIR_NAME := $(GNUSTEP_OBJ_DIR_NAME).dbg
|
2012-10-28 21:29:27 +00:00
|
|
|
ADDITIONAL_CFLAGS += -DDEBUG -DOO_DEBUG -DOO_CHECK_GL_HEAVY=1
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DDEBUG -DOO_DEBUG -DOO_CHECK_GL_HEAVY=1
|
2009-08-29 23:09:22 +00:00
|
|
|
endif
|
2009-11-14 16:18:23 +00:00
|
|
|
|
|
|
|
# these are common settings for both test and deployment release configurations
|
|
|
|
ifeq ($(NO_SHADERS),yes)
|
2011-02-16 13:24:56 +00:00
|
|
|
ADDITIONAL_CFLAGS += -DNO_SHADERS=1
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DNO_SHADERS=1
|
2009-08-29 23:09:22 +00:00
|
|
|
endif
|
2012-04-28 17:44:39 +00:00
|
|
|
ifeq ($(FEATURE_REQUEST_5496),yes)
|
2019-06-09 13:17:15 +03:00
|
|
|
ADDITIONAL_CFLAGS += -DFEATURE_REQUEST_5496=1
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DFEATURE_REQUEST_5496=1
|
2012-04-28 17:44:39 +00:00
|
|
|
endif
|
2009-08-29 23:09:22 +00:00
|
|
|
|
2010-03-01 23:22:32 +00:00
|
|
|
# DEPLOYMENT_RELEASE_CONFIGURATION value is passed from Makefile. Note that the deployment release settings
|
2009-11-14 16:18:23 +00:00
|
|
|
# are forced, while test release settings are adjustable.
|
|
|
|
ifeq ($(DEPLOYMENT_RELEASE_CONFIGURATION),yes)
|
2011-02-16 13:24:56 +00:00
|
|
|
ADDITIONAL_CFLAGS += -DNDEBUG
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DNDEBUG
|
|
|
|
ADDITIONAL_CFLAGS += -DOO_CHECK_GL_HEAVY=0
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DOO_CHECK_GL_HEAVY=0
|
|
|
|
ADDITIONAL_CFLAGS += -DOO_EXCLUDE_DEBUG_SUPPORT=1
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DOO_EXCLUDE_DEBUG_SUPPORT=1
|
|
|
|
ADDITIONAL_CFLAGS += -DOO_OXP_VERIFIER_ENABLED=0
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DOO_OXP_VERIFIER_ENABLED=0
|
|
|
|
ADDITIONAL_CFLAGS += -DOO_LOCALIZATION_TOOLS=0
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DOO_LOCALIZATION_TOOLS=0
|
|
|
|
ADDITIONAL_CFLAGS += -DDEBUG_GRAPHVIZ=0
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DDEBUG_GRAPHVIZ=0
|
2015-04-03 17:15:32 +02:00
|
|
|
ADDITIONAL_CFLAGS += -DOO_FOV_INFLIGHT_CONTROL_ENABLED=0
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DOO_FOV_INFLIGHT_CONTROL_ENABLEDD=0
|
2009-11-14 16:18:23 +00:00
|
|
|
else
|
2011-02-16 13:24:56 +00:00
|
|
|
ifeq ($(BUILD_WITH_DEBUG_FUNCTIONALITY),no)
|
|
|
|
ADDITIONAL_CFLAGS += -DNDEBUG
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DNDEBUG
|
|
|
|
endif
|
|
|
|
ifeq ($(OO_CHECK_GL_HEAVY),yes)
|
|
|
|
ADDITIONAL_CFLAGS += -DOO_CHECK_GL_HEAVY=1
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DOO_CHECK_GL_HEAVY=1
|
|
|
|
endif
|
|
|
|
ifeq ($(OO_EXCLUDE_DEBUG_SUPPORT),yes)
|
|
|
|
ADDITIONAL_CFLAGS += -DOO_EXCLUDE_DEBUG_SUPPORT=1
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DOO_EXCLUDE_DEBUG_SUPPORT=1
|
|
|
|
endif
|
|
|
|
ifeq ($(OO_OXP_VERIFIER_ENABLED),yes)
|
|
|
|
ADDITIONAL_CFLAGS += -DOO_OXP_VERIFIER_ENABLED=1
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DOO_OXP_VERIFIER_ENABLED=1
|
|
|
|
endif
|
|
|
|
ifeq ($(OO_LOCALIZATION_TOOLS),yes)
|
|
|
|
ADDITIONAL_CFLAGS += -DOO_LOCALIZATION_TOOLS=1
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DOO_LOCALIZATION_TOOLS=1
|
|
|
|
endif
|
|
|
|
ifeq ($(DEBUG_GRAPHVIZ),yes)
|
|
|
|
ADDITIONAL_CFLAGS += -DDEBUG_GRAPHVIZ=1
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DDEBUG_GRAPHVIZ=1
|
|
|
|
endif
|
2015-04-03 17:15:32 +02:00
|
|
|
ifeq ($(OO_FOV_INFLIGHT_CONTROL_ENABLED),yes)
|
|
|
|
ADDITIONAL_CFLAGS += -DOO_FOV_INFLIGHT_CONTROL_ENABLED=1
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DOO_FOV_INFLIGHT_CONTROL_ENABLED=1
|
2015-03-26 09:20:02 +01:00
|
|
|
endif
|
2009-11-14 16:18:23 +00:00
|
|
|
endif
|
|
|
|
|
2009-08-29 23:09:22 +00:00
|
|
|
ifeq ($(SNAPSHOT_BUILD), yes)
|
2011-02-16 13:24:56 +00:00
|
|
|
ADDITIONAL_CFLAGS += -DSNAPSHOT_BUILD -DOOLITE_SNAPSHOT_VERSION=\"$(VERSION_STRING)\"
|
|
|
|
ADDITIONAL_OBJCFLAGS += -DSNAPSHOT_BUILD -DOOLITE_SNAPSHOT_VERSION=\"$(VERSION_STRING)\"
|
2009-08-29 23:09:22 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
OBJC_PROGRAM_NAME = oolite
|
|
|
|
|
|
|
|
oolite_C_FILES = \
|
2011-02-16 13:24:56 +00:00
|
|
|
legacy_random.c \
|
|
|
|
strlcpy.c \
|
|
|
|
OOTCPStreamDecoder.c \
|
2013-10-26 16:18:39 +01:00
|
|
|
OOPlanetData.c \
|
|
|
|
ioapi.c \
|
|
|
|
unzip.c
|
2017-12-12 15:10:48 +02:00
|
|
|
|
|
|
|
ifeq ($(GNUSTEP_HOST_OS),mingw32)
|
|
|
|
oolite_WINDRES_FILES = \
|
|
|
|
OOResourcesWin.rc
|
|
|
|
endif
|
2009-08-29 23:09:22 +00:00
|
|
|
|
|
|
|
OOLITE_DEBUG_FILES = \
|
2011-02-16 13:24:56 +00:00
|
|
|
OODebugMonitor.m \
|
2014-09-07 15:14:05 +01:00
|
|
|
OODebugStandards.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OODebugSupport.m \
|
|
|
|
OODebugTCPConsoleClient.m \
|
|
|
|
OOJSConsole.m \
|
|
|
|
OOProfilingStopwatch.m \
|
|
|
|
OOTCPStreamDecoderAbstractionLayer.m
|
2009-08-29 23:09:22 +00:00
|
|
|
|
|
|
|
OOLITE_ENTITY_FILES = \
|
2012-07-10 15:06:29 +00:00
|
|
|
DockEntity.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
DustEntity.m \
|
|
|
|
Entity.m \
|
|
|
|
OOEntityWithDrawable.m \
|
|
|
|
OOParticleSystem.m \
|
|
|
|
PlanetEntity.m \
|
|
|
|
PlayerEntity.m \
|
|
|
|
PlayerEntityContracts.m \
|
|
|
|
PlayerEntityControls.m \
|
|
|
|
PlayerEntityLegacyScriptEngine.m \
|
|
|
|
PlayerEntityLoadSave.m \
|
|
|
|
PlayerEntityScriptMethods.m \
|
|
|
|
PlayerEntitySound.m \
|
|
|
|
PlayerEntityStickMapper.m \
|
2014-01-10 20:30:48 +00:00
|
|
|
PlayerEntityStickProfile.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
ProxyPlayerEntity.m \
|
|
|
|
OOBreakPatternEntity.m \
|
|
|
|
ShipEntity.m \
|
|
|
|
ShipEntityAI.m \
|
|
|
|
ShipEntityScriptMethods.m \
|
|
|
|
SkyEntity.m \
|
|
|
|
StationEntity.m \
|
|
|
|
OOSunEntity.m \
|
|
|
|
WormholeEntity.m \
|
|
|
|
OOLightParticleEntity.m \
|
|
|
|
OOFlasherEntity.m \
|
|
|
|
OOExhaustPlumeEntity.m \
|
|
|
|
OOSparkEntity.m \
|
|
|
|
OOECMBlastEntity.m \
|
|
|
|
OOPlanetEntity.m \
|
|
|
|
OOPlasmaShotEntity.m \
|
|
|
|
OOPlasmaBurstEntity.m \
|
|
|
|
OOFlashEffectEntity.m \
|
2013-09-22 19:55:42 +01:00
|
|
|
OOExplosionCloudEntity.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
ShipEntityLoadRestore.m \
|
|
|
|
OOLaserShotEntity.m \
|
|
|
|
OOQuiriumCascadeEntity.m \
|
2012-08-19 17:09:51 +00:00
|
|
|
OORingEffectEntity.m \
|
2013-10-01 21:48:02 +01:00
|
|
|
OOVisualEffectEntity.m \
|
|
|
|
OOWaypointEntity.m
|
2009-08-29 23:09:22 +00:00
|
|
|
|
|
|
|
OOLITE_GRAPHICS_DRAWABLE_FILES = \
|
2011-02-16 13:24:56 +00:00
|
|
|
OODrawable.m \
|
|
|
|
OOPlanetDrawable.m \
|
|
|
|
OOMesh.m
|
2009-08-29 23:09:22 +00:00
|
|
|
|
|
|
|
OOLITE_GRAPHICS_MATERIAL_FILES = \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOMaterialSpecifier.m \
|
|
|
|
OOBasicMaterial.m \
|
2012-02-08 00:34:07 +00:00
|
|
|
OODefaultShaderSynthesizer.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOMaterial.m \
|
|
|
|
OONullTexture.m \
|
|
|
|
OOPlanetTextureGenerator.m \
|
2014-05-04 15:43:26 +01:00
|
|
|
OOStandaloneAtmosphereGenerator.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOPNGTextureLoader.m \
|
|
|
|
OOShaderMaterial.m \
|
|
|
|
OOShaderProgram.m \
|
|
|
|
OOShaderUniform.m \
|
|
|
|
OOShaderUniformMethodType.m \
|
|
|
|
OOSingleTextureMaterial.m \
|
|
|
|
OOTexture.m \
|
|
|
|
OOConcreteTexture.m \
|
|
|
|
OOTextureGenerator.m \
|
|
|
|
OOTextureLoader.m \
|
|
|
|
OOPixMap.m \
|
|
|
|
OOTextureScaling.m \
|
|
|
|
OOPixMapChannelOperations.m \
|
|
|
|
OOMultiTextureMaterial.m \
|
|
|
|
OOMaterialConvenienceCreators.m \
|
|
|
|
OOCombinedEmissionMapGenerator.m \
|
|
|
|
OOPixMapTextureLoader.m
|
2009-08-29 23:09:22 +00:00
|
|
|
|
|
|
|
OOLITE_GRAPHICS_MISC_FILES = \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOCrosshairs.m \
|
|
|
|
OODebugGLDrawing.m \
|
|
|
|
OOGraphicsResetManager.m \
|
|
|
|
OOOpenGL.m \
|
2012-10-28 18:27:27 +00:00
|
|
|
OOOpenGLStateManager.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOOpenGLExtensionManager.m \
|
2014-03-19 17:20:24 +00:00
|
|
|
OOOpenGLMatrixManager.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOProbabilisticTextureManager.m \
|
|
|
|
OOSkyDrawable.m \
|
|
|
|
OOTextureSprite.m \
|
|
|
|
OOPolygonSprite.m \
|
|
|
|
OOConvertCubeMapToLatLong.m
|
2009-08-29 23:09:22 +00:00
|
|
|
|
|
|
|
OOLITE_MATHS_FILES = \
|
2011-02-16 13:24:56 +00:00
|
|
|
CollisionRegion.m \
|
2012-09-30 14:56:44 +00:00
|
|
|
OOMeshToOctreeConverter.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
Octree.m \
|
2013-07-02 18:43:59 +01:00
|
|
|
OOHPVector.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOMatrix.m \
|
|
|
|
OOQuaternion.m \
|
|
|
|
OOVector.m \
|
|
|
|
OOVoxel.m
|
2009-08-29 23:09:22 +00:00
|
|
|
|
|
|
|
OOLITE_OXP_VERIFIER_FILES = \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOAIStateMachineVerifierStage.m \
|
|
|
|
OOCheckDemoShipsPListVerifierStage.m \
|
|
|
|
OOCheckEquipmentPListVerifierStage.m \
|
2015-01-27 21:29:28 +00:00
|
|
|
OOCheckJSSyntaxVerifierStage.m \
|
2014-12-07 14:05:14 +00:00
|
|
|
OOCheckPListSyntaxVerifierStage.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOCheckRequiresPListVerifierStage.m \
|
|
|
|
OOCheckShipDataPListVerifierStage.m \
|
|
|
|
OOFileScannerVerifierStage.m \
|
|
|
|
OOModelVerifierStage.m \
|
|
|
|
OOOXPVerifier.m \
|
|
|
|
OOOXPVerifierStage.m \
|
|
|
|
OOPListSchemaVerifier.m \
|
|
|
|
OOTextureVerifierStage.m
|
2009-08-29 23:09:22 +00:00
|
|
|
|
|
|
|
OOLITE_RSRC_MGMT_FILES = \
|
2011-02-16 13:24:56 +00:00
|
|
|
OldSchoolPropertyListWriting.m \
|
|
|
|
OOCache.m \
|
|
|
|
OOCacheManager.m \
|
|
|
|
OOConvertSystemDescriptions.m \
|
2014-01-05 12:19:49 +00:00
|
|
|
OOOXZManager.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOPListParsing.m \
|
2014-10-12 19:41:11 +01:00
|
|
|
OOSystemDescriptionManager.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
ResourceManager.m \
|
|
|
|
TextureStore.m
|
2009-08-29 23:09:22 +00:00
|
|
|
|
|
|
|
OOLITE_SCRIPTING_FILES = \
|
2011-02-16 13:24:56 +00:00
|
|
|
EntityOOJavaScriptExtensions.m \
|
|
|
|
OOJavaScriptEngine.m \
|
|
|
|
OOJSEngineTimeManagement.m \
|
|
|
|
OOJSEngineDebuggerHelpers.m \
|
|
|
|
OOConstToJSString.m \
|
|
|
|
OOJSCall.m \
|
|
|
|
OOJSClock.m \
|
2012-07-11 11:52:23 +00:00
|
|
|
OOJSDock.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOJSEntity.m \
|
|
|
|
OOJSEquipmentInfo.m \
|
2013-11-26 22:58:42 +00:00
|
|
|
OOJSExhaustPlume.m \
|
|
|
|
OOJSFlasher.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOJSFunction.m \
|
|
|
|
OOJSGlobal.m \
|
2012-09-14 19:49:53 +00:00
|
|
|
OOJSInterfaceDefinition.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOJSManifest.m \
|
|
|
|
OOJSMission.m \
|
|
|
|
OOJSMissionVariables.m \
|
|
|
|
OOJSOolite.m \
|
|
|
|
OOJSPlanet.m \
|
|
|
|
OOJSPlayer.m \
|
|
|
|
OOJSPlayerShip.m \
|
2013-07-01 13:46:13 +01:00
|
|
|
OOJSPopulatorDefinition.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOJSQuaternion.m \
|
|
|
|
OOJSScript.m \
|
|
|
|
OOJSShip.m \
|
|
|
|
OOJSShipGroup.m \
|
|
|
|
OOJSSound.m \
|
|
|
|
OOJSSoundSource.m \
|
|
|
|
OOJSSpecialFunctions.m \
|
|
|
|
OOJSStation.m \
|
|
|
|
OOJSSun.m \
|
|
|
|
OOJSSystem.m \
|
|
|
|
OOJSSystemInfo.m \
|
|
|
|
OOJSTimer.m \
|
2013-10-02 21:54:44 +01:00
|
|
|
OOJSVisualEffect.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOJSVector.m \
|
|
|
|
OOJSWorldScripts.m \
|
2013-10-02 21:54:44 +01:00
|
|
|
OOJSWormhole.m \
|
|
|
|
OOJSWaypoint.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOLegacyScriptWhitelist.m \
|
|
|
|
OOPListScript.m \
|
|
|
|
OOScript.m \
|
|
|
|
OOScriptTimer.m \
|
|
|
|
OOJSFrameCallbacks.m \
|
|
|
|
OOJSFont.m
|
2009-08-29 23:09:22 +00:00
|
|
|
|
|
|
|
OOLITE_SOUND_FILES = \
|
2013-10-31 14:00:18 +00:00
|
|
|
OOOpenALController.m \
|
|
|
|
OOMusicController.m \
|
|
|
|
OOSoundSource.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOSoundSourcePool.m \
|
2013-10-31 14:00:18 +00:00
|
|
|
OOALMusic.m \
|
|
|
|
OOALSound.m \
|
|
|
|
OOALSoundChannel.m \
|
|
|
|
OOALSoundMixer.m \
|
|
|
|
OOALSoundDecoder.m \
|
2013-10-31 18:04:25 +00:00
|
|
|
OOALBufferedSound.m \
|
|
|
|
OOALStreamedSound.m
|
2013-10-31 14:00:18 +00:00
|
|
|
|
2009-08-29 23:09:22 +00:00
|
|
|
|
|
|
|
OOLITE_UI_FILES = \
|
2011-02-16 13:24:56 +00:00
|
|
|
GuiDisplayGen.m \
|
|
|
|
HeadUpDisplay.m \
|
|
|
|
OOEncodingConverter.m
|
2009-08-29 23:09:22 +00:00
|
|
|
|
|
|
|
OO_UTILITY_FILES = \
|
2011-02-16 13:24:56 +00:00
|
|
|
Comparison.m \
|
2013-10-26 16:18:39 +01:00
|
|
|
NSDataOOExtensions.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
NSDictionaryOOExtensions.m \
|
|
|
|
NSFileManagerOOExtensions.m \
|
|
|
|
NSMutableDictionaryOOExtensions.m \
|
|
|
|
NSScannerOOExtensions.m \
|
|
|
|
NSStringOOExtensions.m \
|
|
|
|
NSThreadOOExtensions.m \
|
|
|
|
NSNumberOOExtensions.m \
|
|
|
|
OOAsyncQueue.m \
|
|
|
|
OOAsyncWorkManager.m \
|
|
|
|
OOCollectionExtractors.m \
|
|
|
|
OOColor.m \
|
|
|
|
OOConstToString.m \
|
|
|
|
OOCPUInfo.m \
|
|
|
|
OOEntityFilterPredicate.m \
|
|
|
|
OOExcludeObjectEnumerator.m \
|
|
|
|
OOFilteringEnumerator.m \
|
|
|
|
OOIsNumberLiteral.m \
|
|
|
|
OOLogging.m \
|
|
|
|
OOLogHeader.m \
|
|
|
|
OOLogOutputHandler.m \
|
|
|
|
OOPriorityQueue.m \
|
|
|
|
OOProbabilitySet.m \
|
|
|
|
OOShipGroup.m \
|
2012-10-05 20:34:14 +00:00
|
|
|
OOStringExpander.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOStringParsing.m \
|
|
|
|
OOWeakReference.m \
|
2012-07-20 07:02:36 +00:00
|
|
|
OOWeakSet.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOXMLExtensions.m \
|
|
|
|
OODeepCopy.m \
|
|
|
|
OORegExpMatcher.m \
|
|
|
|
NSObjectOOExtensions.m
|
2009-08-29 23:09:22 +00:00
|
|
|
|
|
|
|
OOLITE_MISC_FILES = \
|
2011-02-16 13:24:56 +00:00
|
|
|
AI.m \
|
|
|
|
AIGraphViz.m \
|
|
|
|
GameController.m \
|
2012-08-05 19:31:24 +00:00
|
|
|
GameController+SDLFullScreen.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOJoystickManager.m \
|
2014-01-05 20:15:19 +00:00
|
|
|
OOJoystickProfile.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOSDLJoystickManager.m \
|
|
|
|
main.m \
|
|
|
|
MyOpenGLView.m \
|
|
|
|
OOCharacter.m \
|
|
|
|
OOCocoa.m \
|
2014-08-23 14:47:38 +01:00
|
|
|
OOCommodities.m \
|
|
|
|
OOCommodityMarket.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOEquipmentType.m \
|
2012-08-18 17:39:40 +00:00
|
|
|
OOMouseInteractionMode.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OORoleSet.m \
|
2014-03-21 22:25:50 +00:00
|
|
|
OOShipLibraryDescriptions.m \
|
2011-02-16 13:24:56 +00:00
|
|
|
OOShipRegistry.m \
|
|
|
|
OOSpatialReference.m \
|
|
|
|
OOTrumble.m \
|
|
|
|
Universe.m
|
2009-08-29 23:09:22 +00:00
|
|
|
|
|
|
|
oolite_OBJC_FILES = \
|
2011-02-16 13:24:56 +00:00
|
|
|
$(OOLITE_DEBUG_FILES) \
|
|
|
|
$(OOLITE_ENTITY_FILES) \
|
|
|
|
$(OOLITE_GRAPHICS_DRAWABLE_FILES) \
|
|
|
|
$(OOLITE_GRAPHICS_MATERIAL_FILES) \
|
|
|
|
$(OOLITE_GRAPHICS_MISC_FILES) \
|
|
|
|
$(OOLITE_MATHS_FILES) \
|
|
|
|
$(OOLITE_OXP_VERIFIER_FILES) \
|
|
|
|
$(OOLITE_RSRC_MGMT_FILES) \
|
|
|
|
$(OOLITE_SCRIPTING_FILES) \
|
|
|
|
$(OOLITE_SOUND_FILES) \
|
|
|
|
$(OOLITE_UI_FILES) \
|
|
|
|
$(OO_UTILITY_FILES) \
|
|
|
|
$(OOLITE_MISC_FILES)
|
2009-08-29 23:09:22 +00:00
|
|
|
|
|
|
|
include $(GNUSTEP_MAKEFILES)/objc.make
|
|
|
|
include GNUmakefile.postamble
|
2019-06-09 13:17:15 +03:00
|
|
|
|