VirtualBox

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

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

FE/SDL: use the X11 keyboard library

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
Line 
1# $Id: Makefile.kmk 29655 2010-05-18 21:38:28Z 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
53ifndef VBOX_OSE
54 VBoxSDL_SOURCES.win = \
55 win32/WinUI.cpp \
56 win32/TitlebarButtons.cpp \
57 win32/VBoxSDL.rc
58win32/VBoxSDL.rc_INCS = $(PATH_VBoxSDL)
59win32/VBoxSDL.rc_DEPS = $(PATH_VBoxSDL)/VBoxSDL-icon.rc
60win32/VBoxSDL.rc_CLEAN = $(PATH_VBoxSDL)/VBoxSDL-icon.rc
61endif
62
63VBoxSDL_DEFS =
64ifdef VBOX_WITH_SDL13
65 VBoxSDL_DEFS += VBOX_WITH_SDL13
66else
67 ifdef VBOX_WITH_SECURELABEL
68 VBoxSDL_DEFS += VBOX_SECURELABEL
69 endif
70endif
71ifdef VBOX_WITH_VRDP
72 VBoxSDL_DEFS += VBOX_WITH_VRDP
73endif
74VBoxSDL_DEFS.freebsd = VBOXSDL_WITH_X11
75VBoxSDL_DEFS.linux = _GNU_SOURCE VBOXSDL_WITH_X11
76VBoxSDL_DEFS.solaris = VBOXSDL_WITH_X11
77ifdef VBOX_OPENGL
78 #VBoxSDL_DEFS.linux += VBOX_OPENGL
79endif
80ifndef VBOX_OSE
81# disable for now as this customer-specific GUI
82# VBoxSDL_DEFS.win = VBOX_WIN32_UI
83endif
84VBoxSDL_DEFS.win.x86 = _WIN32_WINNT=0x0500
85VBoxSDL_DEFS.win.amd64 = _WIN32_WINNT=0x0510
86
87VBoxSDL_INCS = \
88 $(PATH_VBoxSDL)
89ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
90VBoxSDL_INCS += \
91 $(VBOX_XCURSOR_INCS)
92endif
93ifneq ($(filter-out win solaris,$(KBUILD_TARGET)),)
94
95VBoxSDL_LIBS = \
96 $(LIB_SDK_LIBSDL_SDLMAIN)
97endif
98ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
99VBoxSDL_LIBS += \
100 $(PATH_DLL)/VBoxKeyboard$(VBOX_SUFF_DLL) \
101 $(VBOX_XCURSOR_LIBS) \
102 X11
103VBoxSDL_LIBPATH = \
104 $(VBOX_LIBPATH_X11)
105endif
106ifdef VBOX_OPENGL
107 #VBoxSDL_LIBS.linux += GL
108endif
109
110VBoxSDL_LDFLAGS.darwin = \
111 -framework Foundation -framework AppKit
112
113VBoxSDL_CLEAN = $(PATH_VBoxSDL)/Ico64x01.h
114VBoxSDL_INTERMEDIATES = $(PATH_VBoxSDL)/Ico64x01.h
115
116
117# Convert the pnm-file to a byte array.
118$$(PATH_VBoxSDL)/Ico64x01.h: $(PATH_ROOT)/src/VBox/Frontends/VBoxSDL/ico64x01.pnm $(VBOX_BIN2C) | $$(dir $$@)
119 $(call MSG_TOOL,bin2c,VBoxSDL,$<,$@)
120 $(QUIET)$(VBOX_BIN2C) Ico64x01 $< $@
121
122# Icon include file.
123$$(PATH_VBoxSDL)/VBoxSDL-icon.rc: $(VBOX_WINDOWS_ICON_FILE) $$(VBoxSDL_PATH)/Makefile.kmk | $$(dir $$@)
124 $(RM) -f $@
125 $(APPEND) $@ 'IDI_VIRTUALBOX ICON DISCARDABLE "$(subst /,\\,$(VBOX_WINDOWS_ICON_FILE))"'
126
127
128
129#
130# tstSDL
131#
132tstSDL_TEMPLATE = VBOXR3NPEXE
133tstSDL_SDKS = LIBSDL
134tstSDL_INST = $(INST_TESTCASE)
135tstSDL_SOURCES = \
136 VBoxSDLTest.cpp
137tstSDL_SOURCES.darwin = \
138 VBoxSDLMain-darwin.m
139tstSDL_DEFS = IN_RING3 IN_RT_R3 _GNU_SOURCE
140tstSDL_DEFS.win.x86 = _WIN32_WINNT=0x0500
141ifdef VBOX_OPENGL
142tstSDL_DEFS.linux = VBOX_OPENGL
143endif
144tstSDL_INCS = \
145 $(PATH_tstSDL)
146
147tstSDL_LIBS = \
148 $(LIB_RUNTIME)
149ifneq ($(filter-out win solaris,$(KBUILD_TARGET)),)
150tstSDL_LIBS += \
151 $(LIB_SDK_LIBSDL_SDLMAIN)
152endif
153
154ifdef VBOX_OPENGL
155tstSDL_LIBS.linux += GL
156endif
157ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
158tstSDL_LIBPATH = \
159 $(VBOX_LIBPATH_X11)
160endif
161
162tstSDL_LDFLAGS.darwin = \
163 -framework Foundation -framework AppKit
164
165## @todo What was this stuff doing here? The exception config is saying two different things, and why just -O for release builds?
166#tstSDL_CXXFLAGS.win = \
167# -EHsc
168#tstSDL_CXXFLAGS.linux = \
169# -DNDEBUG -DTRIMMED -O -Wall -fno-rtti -fno-exceptions \
170# -Wno-non-virtual-dtor -Wno-long-long -fshort-wchar -pthread -pipe
171# Is this what's intended? Why -fshort-wchar?
172tstSDL_DEFS.linux = NDEBUG TRIMMED
173tstSDL_CXXFLAGS.linux = -O -Wall -Wno-non-virtual-dtor -Wno-long-long -fshort-wchar
174
175
176endif # !VBOX_WITH_HARDENING || "$(KBUILD_TARGET)" != "darwin"
177include $(KBUILD_PATH)/subfooter.kmk
178
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