VirtualBox

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

Last change on this file since 35273 was 33590, checked in by vboxsync, 14 years ago

VRDE: removed VBOX_WITH_VRDP from source code, also some obsolete code removed.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.2 KB
Line 
1# $Id: Makefile.kmk 33590 2010-10-29 08:55:09Z vboxsync $
2## @file
3# Sub-Makefile for VBoxSDL (a simple frontend based on SDL).
4#
5
6#
7# Copyright (C) 2006-2007 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#
23# Targets.
24#
25ifdef VBOX_WITH_HARDENING
26 PROGRAMS += VBoxSDLHardened
27 DLLS += VBoxSDL
28else
29 PROGRAMS += VBoxSDL
30endif
31PROGRAMS += tstSDL
32
33
34#
35# Hardened VBoxSDL
36#
37VBoxSDLHardened_TEMPLATE = VBOXR3HARDENEDEXE
38VBoxSDLHardened_SOURCES = VBoxSDLHardened.cpp
39VBoxSDLHardened_NAME = VBoxSDL
40
41
42#
43# VBoxSDL
44#
45VBoxSDL_TEMPLATE := $(if $(VBOX_WITH_HARDENING),VBOXMAINCLIENTDLL,VBOXMAINCLIENTEXE)
46VBoxSDL_SDKS = LIBSDL
47VBoxSDL_SOURCES = \
48 VBoxSDL.cpp \
49 Framebuffer.cpp \
50 Helper.cpp
51VBoxSDL_SOURCES.darwin = \
52 VBoxSDLMain-darwin.m
53
54VBoxSDL_DEFS =
55ifdef VBOX_WITH_SDL13
56 VBoxSDL_DEFS += VBOX_WITH_SDL13
57else
58 ifdef VBOX_WITH_SECURELABEL
59 VBoxSDL_DEFS += VBOX_SECURELABEL
60 endif
61endif
62VBoxSDL_DEFS.freebsd = VBOXSDL_WITH_X11
63VBoxSDL_DEFS.linux = _GNU_SOURCE VBOXSDL_WITH_X11
64VBoxSDL_DEFS.solaris = VBOXSDL_WITH_X11
65ifdef VBOX_OPENGL
66 #VBoxSDL_DEFS.linux += VBOX_OPENGL
67endif
68ifndef VBOX_OSE
69# disable for now as this customer-specific GUI
70# VBoxSDL_DEFS.win = VBOX_WIN32_UI
71endif
72VBoxSDL_DEFS.win.x86 = _WIN32_WINNT=0x0500
73VBoxSDL_DEFS.win.amd64 = _WIN32_WINNT=0x0510
74
75VBoxSDL_INCS = \
76 $(PATH_VBoxSDL)
77ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
78VBoxSDL_INCS += \
79 $(VBOX_XCURSOR_INCS)
80endif
81ifneq ($(filter-out win solaris,$(KBUILD_TARGET)),)
82
83VBoxSDL_LIBS = \
84 $(LIB_SDK_LIBSDL_SDLMAIN)
85endif
86ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
87VBoxSDL_LIBS += \
88 $(PATH_DLL)/VBoxKeyboard$(VBOX_SUFF_DLL) \
89 $(VBOX_XCURSOR_LIBS) \
90 X11
91VBoxSDL_LIBPATH = \
92 $(VBOX_LIBPATH_X11)
93endif
94ifdef VBOX_OPENGL
95 #VBoxSDL_LIBS.linux += GL
96endif
97
98VBoxSDL_LDFLAGS.darwin = \
99 -framework Foundation -framework AppKit
100
101VBoxSDL_CLEAN = $(PATH_VBoxSDL)/Ico64x01.h
102VBoxSDL_INTERMEDIATES = $(PATH_VBoxSDL)/Ico64x01.h
103
104
105# Convert the pnm-file to a byte array.
106$$(PATH_VBoxSDL)/Ico64x01.h: $(PATH_ROOT)/src/VBox/Frontends/VBoxSDL/ico64x01.pnm $(VBOX_BIN2C) | $$(dir $$@)
107 $(call MSG_TOOL,bin2c,VBoxSDL,$<,$@)
108 $(QUIET)$(VBOX_BIN2C) Ico64x01 $< $@
109
110# Icon include file.
111$$(PATH_VBoxSDL)/VBoxSDL-icon.rc: $(VBOX_WINDOWS_ICON_FILE) $$(VBoxSDL_PATH)/Makefile.kmk | $$(dir $$@)
112 $(RM) -f $@
113 $(APPEND) $@ 'IDI_VIRTUALBOX ICON DISCARDABLE "$(subst /,\\,$(VBOX_WINDOWS_ICON_FILE))"'
114
115
116
117#
118# tstSDL
119#
120tstSDL_TEMPLATE = VBOXR3NPEXE
121tstSDL_SDKS = LIBSDL
122tstSDL_INST = $(INST_TESTCASE)
123tstSDL_SOURCES = \
124 VBoxSDLTest.cpp
125tstSDL_SOURCES.darwin = \
126 VBoxSDLMain-darwin.m
127tstSDL_DEFS = IN_RING3 IN_RT_R3 _GNU_SOURCE
128tstSDL_DEFS.win.x86 = _WIN32_WINNT=0x0500
129ifdef VBOX_OPENGL
130tstSDL_DEFS.linux = VBOX_OPENGL
131endif
132tstSDL_INCS = \
133 $(PATH_tstSDL)
134
135tstSDL_LIBS = \
136 $(LIB_RUNTIME)
137ifneq ($(filter-out win solaris,$(KBUILD_TARGET)),)
138tstSDL_LIBS += \
139 $(LIB_SDK_LIBSDL_SDLMAIN)
140endif
141
142ifdef VBOX_OPENGL
143tstSDL_LIBS.linux += GL
144endif
145ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
146tstSDL_LIBPATH = \
147 $(VBOX_LIBPATH_X11)
148endif
149
150tstSDL_LDFLAGS.darwin = \
151 -framework Foundation -framework AppKit
152
153## @todo What was this stuff doing here? The exception config is saying two different things, and why just -O for release builds?
154#tstSDL_CXXFLAGS.win = \
155# -EHsc
156#tstSDL_CXXFLAGS.linux = \
157# -DNDEBUG -DTRIMMED -O -Wall -fno-rtti -fno-exceptions \
158# -Wno-non-virtual-dtor -Wno-long-long -fshort-wchar -pthread -pipe
159# Is this what's intended? Why -fshort-wchar?
160tstSDL_DEFS.linux = NDEBUG TRIMMED
161tstSDL_CXXFLAGS.linux = -O -Wall -Wno-non-virtual-dtor -Wno-long-long -fshort-wchar
162
163
164endif # !VBOX_WITH_HARDENING || "$(KBUILD_TARGET)" != "darwin"
165include $(KBUILD_PATH)/subfooter.kmk
166
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle
ContactPrivacy/Do Not Sell My InfoTerms of Use