1 | # $Id: Makefile.kmk 62493 2016-07-22 18:44:18Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for VBoxSDL (a simple frontend based on SDL).
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2016 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 | SUB_DEPTH = ../../../..
|
---|
19 | include $(KBUILD_PATH)/subheader.kmk
|
---|
20 | if !defined(VBOX_WITH_HARDENING) || "$(KBUILD_TARGET)" != "darwin" # No hardened VBoxSDL on darwin.
|
---|
21 |
|
---|
22 |
|
---|
23 | ifdef VBOX_WITH_HARDENING
|
---|
24 | #
|
---|
25 | # Hardened VBoxSDL
|
---|
26 | #
|
---|
27 | PROGRAMS += VBoxSDLHardened
|
---|
28 | VBoxSDLHardened_TEMPLATE = VBOXR3HARDENEDEXE
|
---|
29 | VBoxSDLHardened_SOURCES = VBoxSDLHardened.cpp
|
---|
30 | VBoxSDLHardened_NAME = VBoxSDL
|
---|
31 | $(call VBOX_SET_VER_INFO_EXE,VBoxSDLHardened,VirtualBox Pure SDL Frontend,$(VBOX_WINDOWS_ICON_FILE)) # Version info / description.
|
---|
32 | endif
|
---|
33 |
|
---|
34 |
|
---|
35 | #
|
---|
36 | # VBoxSDL
|
---|
37 | #
|
---|
38 | ifdef VBOX_WITH_HARDENING
|
---|
39 | DLLS += VBoxSDL
|
---|
40 | else
|
---|
41 | PROGRAMS += VBoxSDL
|
---|
42 | endif
|
---|
43 | VBoxSDL_TEMPLATE := $(if $(VBOX_WITH_HARDENING),VBOXMAINCLIENTDLL,VBOXMAINCLIENTEXE)
|
---|
44 | VBoxSDL_SDKS = LIBSDL
|
---|
45 | VBoxSDL_SOURCES = \
|
---|
46 | VBoxSDL.cpp \
|
---|
47 | Framebuffer.cpp \
|
---|
48 | Helper.cpp
|
---|
49 | VBoxSDL_SOURCES.darwin = \
|
---|
50 | VBoxSDLMain-darwin.m \
|
---|
51 | Framebuffer-darwin.m
|
---|
52 |
|
---|
53 | VBoxSDL_DEFS =
|
---|
54 | ifdef VBOX_WITH_SDL13
|
---|
55 | VBoxSDL_DEFS += VBOX_WITH_SDL13
|
---|
56 | else
|
---|
57 | ifdef VBOX_WITH_SECURELABEL
|
---|
58 | VBoxSDL_DEFS += VBOX_SECURELABEL
|
---|
59 | endif
|
---|
60 | endif
|
---|
61 | VBoxSDL_DEFS.freebsd = VBOXSDL_WITH_X11
|
---|
62 | VBoxSDL_DEFS.linux = _GNU_SOURCE VBOXSDL_WITH_X11
|
---|
63 | VBoxSDL_DEFS.solaris = VBOXSDL_WITH_X11
|
---|
64 | ifdef VBOX_OPENGL
|
---|
65 | #VBoxSDL_DEFS.linux += VBOX_OPENGL
|
---|
66 | endif
|
---|
67 | VBoxSDL_DEFS.win.x86 = _WIN32_WINNT=0x0500
|
---|
68 | VBoxSDL_DEFS.win.amd64 = _WIN32_WINNT=0x0510
|
---|
69 |
|
---|
70 | VBoxSDL_INCS = \
|
---|
71 | $(VBoxSDL_0_OUTDIR)
|
---|
72 | ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
|
---|
73 | VBoxSDL_INCS += \
|
---|
74 | $(VBOX_XCURSOR_INCS)
|
---|
75 | endif
|
---|
76 | ifneq ($(filter-out win solaris,$(KBUILD_TARGET)),)
|
---|
77 |
|
---|
78 | VBoxSDL_LIBS = \
|
---|
79 | $(LIB_SDK_LIBSDL_SDLMAIN)
|
---|
80 | endif
|
---|
81 | ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
|
---|
82 | VBoxSDL_LIBS += \
|
---|
83 | $(PATH_STAGE_DLL)/VBoxKeyboard$(VBOX_SUFF_DLL) \
|
---|
84 | $(VBOX_XCURSOR_LIBS) \
|
---|
85 | X11
|
---|
86 | VBoxSDL_LIBPATH = \
|
---|
87 | $(VBOX_LIBPATH_X11)
|
---|
88 | endif
|
---|
89 | ifdef VBOX_OPENGL
|
---|
90 | #VBoxSDL_LIBS.linux += GL
|
---|
91 | endif
|
---|
92 |
|
---|
93 | VBoxSDL_LDFLAGS.darwin = \
|
---|
94 | -framework Foundation -framework AppKit
|
---|
95 |
|
---|
96 | VBoxSDL_CLEAN = $(VBoxSDL_0_OUTDIR)/Ico64x01.h
|
---|
97 | VBoxSDL_INTERMEDIATES = $(VBoxSDL_0_OUTDIR)/Ico64x01.h
|
---|
98 |
|
---|
99 |
|
---|
100 | # Convert the pnm-file to a byte array.
|
---|
101 | $$(VBoxSDL_0_OUTDIR)/Ico64x01.h: $(PATH_ROOT)/src/VBox/Frontends/VBoxSDL/ico64x01.pnm $(VBOX_BIN2C) | $$(dir $$@)
|
---|
102 | $(call MSG_TOOL,bin2c,VBoxSDL,$<,$@)
|
---|
103 | $(QUIET)$(VBOX_BIN2C) Ico64x01 $< $@
|
---|
104 |
|
---|
105 | ifdef VBOX_WITH_HARDENING
|
---|
106 | $(call VBOX_SET_VER_INFO_DLL,VBoxSDL,VirtualBox Pure SDL Frontend,$(VBOX_WINDOWS_ICON_FILE)) # Version info / description.
|
---|
107 | else
|
---|
108 | $(call VBOX_SET_VER_INFO_EXE,VBoxSDL,VirtualBox Pure SDL Frontend,$(VBOX_WINDOWS_ICON_FILE)) # Version info / description.
|
---|
109 | endif
|
---|
110 |
|
---|
111 |
|
---|
112 | #
|
---|
113 | # tstSDL
|
---|
114 | #
|
---|
115 | PROGRAMS += tstSDL
|
---|
116 | tstSDL_TEMPLATE = VBOXR3NPEXE
|
---|
117 | tstSDL_SDKS = LIBSDL
|
---|
118 | tstSDL_INST = $(INST_TESTCASE)
|
---|
119 | tstSDL_SOURCES = \
|
---|
120 | VBoxSDLTest.cpp
|
---|
121 | tstSDL_SOURCES.darwin = \
|
---|
122 | VBoxSDLMain-darwin.m
|
---|
123 | tstSDL_DEFS = IN_RING3 IN_RT_R3 _GNU_SOURCE
|
---|
124 | tstSDL_DEFS.win.x86 = _WIN32_WINNT=0x0500
|
---|
125 | ifdef VBOX_OPENGL
|
---|
126 | tstSDL_DEFS.linux = VBOX_OPENGL
|
---|
127 | endif
|
---|
128 |
|
---|
129 | tstSDL_LIBS = \
|
---|
130 | $(LIB_RUNTIME)
|
---|
131 | ifneq ($(filter-out win solaris,$(KBUILD_TARGET)),)
|
---|
132 | tstSDL_LIBS += \
|
---|
133 | $(LIB_SDK_LIBSDL_SDLMAIN)
|
---|
134 | endif
|
---|
135 |
|
---|
136 | ifdef VBOX_OPENGL
|
---|
137 | tstSDL_LIBS.linux += GL
|
---|
138 | endif
|
---|
139 | ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
|
---|
140 | tstSDL_LIBPATH = \
|
---|
141 | $(VBOX_LIBPATH_X11)
|
---|
142 | endif
|
---|
143 |
|
---|
144 | tstSDL_LDFLAGS.darwin = \
|
---|
145 | -framework Foundation -framework AppKit
|
---|
146 |
|
---|
147 | ## @todo What was this stuff doing here? The exception config is saying two different things, and why just -O for release builds?
|
---|
148 | #tstSDL_CXXFLAGS.win = \
|
---|
149 | # -EHsc
|
---|
150 | #tstSDL_CXXFLAGS.linux = \
|
---|
151 | # -DNDEBUG -DTRIMMED -O -Wall -fno-rtti -fno-exceptions \
|
---|
152 | # -Wno-non-virtual-dtor -Wno-long-long -fshort-wchar -pthread -pipe
|
---|
153 | # Is this what's intended? Why -fshort-wchar?
|
---|
154 | tstSDL_DEFS.linux = NDEBUG TRIMMED
|
---|
155 | tstSDL_CXXFLAGS.linux = -O -Wall -Wno-non-virtual-dtor -Wno-long-long -fshort-wchar
|
---|
156 |
|
---|
157 |
|
---|
158 | endif # !VBOX_WITH_HARDENING || "$(KBUILD_TARGET)" != "darwin"
|
---|
159 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
160 |
|
---|