VirtualBox

source: vbox/trunk/src/VBox/Frontends/VBoxSDL/Makefile.kmk@ 64739

Last change on this file since 64739 was 62493, checked in by vboxsync, 8 years ago

(C) 2016

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.3 KB
Line 
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
18SUB_DEPTH = ../../../..
19include $(KBUILD_PATH)/subheader.kmk
20if !defined(VBOX_WITH_HARDENING) || "$(KBUILD_TARGET)" != "darwin" # No hardened VBoxSDL on darwin.
21
22
23ifdef 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.
32endif
33
34
35#
36# VBoxSDL
37#
38ifdef VBOX_WITH_HARDENING
39 DLLS += VBoxSDL
40else
41 PROGRAMS += VBoxSDL
42endif
43VBoxSDL_TEMPLATE := $(if $(VBOX_WITH_HARDENING),VBOXMAINCLIENTDLL,VBOXMAINCLIENTEXE)
44VBoxSDL_SDKS = LIBSDL
45VBoxSDL_SOURCES = \
46 VBoxSDL.cpp \
47 Framebuffer.cpp \
48 Helper.cpp
49VBoxSDL_SOURCES.darwin = \
50 VBoxSDLMain-darwin.m \
51 Framebuffer-darwin.m
52
53VBoxSDL_DEFS =
54ifdef VBOX_WITH_SDL13
55 VBoxSDL_DEFS += VBOX_WITH_SDL13
56else
57 ifdef VBOX_WITH_SECURELABEL
58 VBoxSDL_DEFS += VBOX_SECURELABEL
59 endif
60endif
61VBoxSDL_DEFS.freebsd = VBOXSDL_WITH_X11
62VBoxSDL_DEFS.linux = _GNU_SOURCE VBOXSDL_WITH_X11
63VBoxSDL_DEFS.solaris = VBOXSDL_WITH_X11
64ifdef VBOX_OPENGL
65 #VBoxSDL_DEFS.linux += VBOX_OPENGL
66endif
67VBoxSDL_DEFS.win.x86 = _WIN32_WINNT=0x0500
68VBoxSDL_DEFS.win.amd64 = _WIN32_WINNT=0x0510
69
70VBoxSDL_INCS = \
71 $(VBoxSDL_0_OUTDIR)
72ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
73VBoxSDL_INCS += \
74 $(VBOX_XCURSOR_INCS)
75endif
76ifneq ($(filter-out win solaris,$(KBUILD_TARGET)),)
77
78VBoxSDL_LIBS = \
79 $(LIB_SDK_LIBSDL_SDLMAIN)
80endif
81ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
82VBoxSDL_LIBS += \
83 $(PATH_STAGE_DLL)/VBoxKeyboard$(VBOX_SUFF_DLL) \
84 $(VBOX_XCURSOR_LIBS) \
85 X11
86VBoxSDL_LIBPATH = \
87 $(VBOX_LIBPATH_X11)
88endif
89ifdef VBOX_OPENGL
90 #VBoxSDL_LIBS.linux += GL
91endif
92
93VBoxSDL_LDFLAGS.darwin = \
94 -framework Foundation -framework AppKit
95
96VBoxSDL_CLEAN = $(VBoxSDL_0_OUTDIR)/Ico64x01.h
97VBoxSDL_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
105ifdef VBOX_WITH_HARDENING
106$(call VBOX_SET_VER_INFO_DLL,VBoxSDL,VirtualBox Pure SDL Frontend,$(VBOX_WINDOWS_ICON_FILE)) # Version info / description.
107else
108$(call VBOX_SET_VER_INFO_EXE,VBoxSDL,VirtualBox Pure SDL Frontend,$(VBOX_WINDOWS_ICON_FILE)) # Version info / description.
109endif
110
111
112#
113# tstSDL
114#
115PROGRAMS += tstSDL
116tstSDL_TEMPLATE = VBOXR3NPEXE
117tstSDL_SDKS = LIBSDL
118tstSDL_INST = $(INST_TESTCASE)
119tstSDL_SOURCES = \
120 VBoxSDLTest.cpp
121tstSDL_SOURCES.darwin = \
122 VBoxSDLMain-darwin.m
123tstSDL_DEFS = IN_RING3 IN_RT_R3 _GNU_SOURCE
124tstSDL_DEFS.win.x86 = _WIN32_WINNT=0x0500
125ifdef VBOX_OPENGL
126tstSDL_DEFS.linux = VBOX_OPENGL
127endif
128
129tstSDL_LIBS = \
130 $(LIB_RUNTIME)
131ifneq ($(filter-out win solaris,$(KBUILD_TARGET)),)
132tstSDL_LIBS += \
133 $(LIB_SDK_LIBSDL_SDLMAIN)
134endif
135
136ifdef VBOX_OPENGL
137tstSDL_LIBS.linux += GL
138endif
139ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
140tstSDL_LIBPATH = \
141 $(VBOX_LIBPATH_X11)
142endif
143
144tstSDL_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?
154tstSDL_DEFS.linux = NDEBUG TRIMMED
155tstSDL_CXXFLAGS.linux = -O -Wall -Wno-non-virtual-dtor -Wno-long-long -fshort-wchar
156
157
158endif # !VBOX_WITH_HARDENING || "$(KBUILD_TARGET)" != "darwin"
159include $(FILE_KBUILD_SUB_FOOTER)
160
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette