summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
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
#-------------------------------------------------