summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2011-10-31 01:30:24 +0000
committer R. Belmont <rb6502@users.noreply.github.com>2011-10-31 01:30:24 +0000
commitfd0be74ab47456c9c7f3932885d78cc26df3ad52 (patch)
tree232cb1181eb2d663c283b8e7b633f90c9910c022 /makefile
parentab7999d477e0bd177447ecf47ab9dbc47c3eab63 (diff)
SDL: Add TAP/TUN networking capability and shell script for configuration [Carl]
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/makefile b/makefile
index d8e415f1e89..b8f45afa3ae 100644
--- a/makefile
+++ b/makefile
@@ -75,7 +75,7 @@ else
UNAME = $(shell uname -a)
ifeq ($(firstword $(filter Linux,$(UNAME))),Linux)
-TARGETOS = unix
+TARGETOS = linux
endif
ifeq ($(firstword $(filter Solaris,$(UNAME))),Solaris)
TARGETOS = solaris
@@ -405,6 +405,10 @@ ifdef PROFILER
DEFS += -DMAME_PROFILER
endif
+# define USE_NETWORK if we are a making network enabled build
+ifdef USE_NETWORK
+DEFS += -DUSE_NETWORK
+endif
#-------------------------------------------------