1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-05-04 23:16:48 +00:00

SCP: Update SCP to current.

This commit is contained in:
Richard Cornwell
2020-06-03 21:46:23 -04:00
parent 39acb0fa86
commit 34b111bc2c
6 changed files with 21 additions and 4 deletions

View File

@@ -36,6 +36,10 @@
# simulators without networking support, invoking GNU make with
# NONETWORK=1 will do the trick.
#
# By default, video support is enabled if the SDL/SDL2 development
# headers and libraries are available. To force a build without video
# support, invoke GNU make with NOVIDEO=1.
#
# The default build will build compiler optimized binaries.
# If debugging is desired, then GNU make can be invoked with
# DEBUG=1 on the command line.
@@ -145,6 +149,10 @@ endif
ifneq ($(NONETWORK),)
NETWORK_USEFUL =
endif
# ... or without video support
ifneq ($(NOVIDEO),)
VIDEO_USEFUL =
endif
find_exe = $(abspath $(strip $(firstword $(foreach dir,$(strip $(subst :, ,${PATH})),$(wildcard $(dir)/$(1))))))
find_lib = $(abspath $(strip $(firstword $(foreach dir,$(strip ${LIBPATH}),$(wildcard $(dir)/lib$(1).${LIBEXT})))))
find_include = $(abspath $(strip $(firstword $(foreach dir,$(strip ${INCPATH}),$(wildcard $(dir)/$(1).h)))))