VirtualBox

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

Last change on this file since 35740 was 35385, checked in by vboxsync, 13 years ago

Makefiles: <target>_PATH is deprecated, use <target>_DEFPATH instead.

  • 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 35385 2010-12-30 16:35:31Z 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 $(VBoxSDL_0_OUTDIR)
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 = $(VBoxSDL_0_OUTDIR)/Ico64x01.h
102VBoxSDL_INTERMEDIATES = $(VBoxSDL_0_OUTDIR)/Ico64x01.h
103
104
105# Convert the pnm-file to a byte array.
106$$(VBoxSDL_0_OUTDIR)/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$$(VBoxSDL_0_OUTDIR)/VBoxSDL-icon.rc: $(VBOX_WINDOWS_ICON_FILE) $$(VBoxSDL_DEFPATH)/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
132
133tstSDL_LIBS = \
134 $(LIB_RUNTIME)
135ifneq ($(filter-out win solaris,$(KBUILD_TARGET)),)
136tstSDL_LIBS += \
137 $(LIB_SDK_LIBSDL_SDLMAIN)
138endif
139
140ifdef VBOX_OPENGL
141tstSDL_LIBS.linux += GL
142endif
143ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
144tstSDL_LIBPATH = \
145 $(VBOX_LIBPATH_X11)
146endif
147
148tstSDL_LDFLAGS.darwin = \
149 -framework Foundation -framework AppKit
150
151## @todo What was this stuff doing here? The exception config is saying two different things, and why just -O for release builds?
152#tstSDL_CXXFLAGS.win = \
153# -EHsc
154#tstSDL_CXXFLAGS.linux = \
155# -DNDEBUG -DTRIMMED -O -Wall -fno-rtti -fno-exceptions \
156# -Wno-non-virtual-dtor -Wno-long-long -fshort-wchar -pthread -pipe
157# Is this what's intended? Why -fshort-wchar?
158tstSDL_DEFS.linux = NDEBUG TRIMMED
159tstSDL_CXXFLAGS.linux = -O -Wall -Wno-non-virtual-dtor -Wno-long-long -fshort-wchar
160
161
162endif # !VBOX_WITH_HARDENING || "$(KBUILD_TARGET)" != "darwin"
163include $(KBUILD_PATH)/subfooter.kmk
164
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use