VirtualBox

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

Last change on this file since 3481 was 3325, checked in by vboxsync, 17 years ago

Added sdlmain back to lib list.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
Line 
1# $Id: Makefile.kmk 3325 2007-06-28 04:06:44Z vboxsync $
2## @file
3# Makefile for VBoxSDL (a simple frontend based on SDL).
4#
5
6#
7# Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
13# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14# distribution. VirtualBox OSE is distributed in the hope that it will
15# be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17# If you received this file as part of a commercial VirtualBox
18# distribution, then only the terms of your commercial VirtualBox
19# license agreement apply instead of the previous paragraph.
20#
21
22DEPTH = ../../../..
23include $(PATH_KBUILD)/header.kmk
24
25PROGRAMS = VBoxSDL tstSDL
26
27
28#
29# VBoxSDL
30#
31
32VBoxSDL_TEMPLATE = VBOXMAINCLIENTEXE
33VBoxSDL_SDKS = LIBSDL
34VBoxSDL_SOURCES = \
35 VBoxSDL.cpp \
36 Framebuffer.cpp \
37 Helper.cpp
38ifndef VBOX_OSE
39 VBoxSDL_SOURCES.win= \
40 win32/WinUI.cpp \
41 win32/TitlebarButtons.cpp \
42 win32/VBoxSDL.rc
43endif
44VBoxSDL_DEFS =
45ifdef VBOX_WITH_SECURELABEL
46 VBoxSDL_DEFS += VBOX_SECURELABEL
47endif
48ifdef VBOX_WITH_VRDP
49 VBoxSDL_DEFS += VBOX_VRDP
50endif
51VBoxSDL_DEFS.linux = _GNU_SOURCE
52ifdef VBOX_OPENGL
53 #VBoxSDL_DEFS.linux += VBOX_OPENGL
54endif
55ifndef VBOX_OSE
56 VBoxSDL_DEFS.win = VBOX_WIN32_UI
57endif
58VBoxSDL_DEFS.win.x86 = _WIN32_WINNT=0x0500
59VBoxSDL_DEFS.win.amd64 = _WIN32_WINNT=0x0510
60VBoxSDL_INCS = \
61 $(PATH_BIN)/sdk/include \
62 $(PATH_VBoxSDL)
63ifndef ($(filter-out win,$(BUILD_TARGET),)
64VBoxSDL_LIBS = \
65 $(LIB_SDK_LIBSDL_SDLMAIN)
66endif
67VBoxSDL_LIBS.linux = \
68 $(LIB_XCURSOR)
69VBoxSDL_LDFLAGS.darwin = \
70 -framework Foundation -framework AppKit
71ifdef VBOX_OPENGL
72 #VBoxSDL_LIBS.linux += GL
73endif
74VBoxSDL_LIBPATH.linux = \
75 $(VBOX_LIBPATH_X11)
76
77VBoxSDL_CLEAN = $(PATH_VBoxSDL)/Ico64x01.h
78Framebuffer.cpp_DEPS = $(PATH_VBoxSDL)/Ico64x01.h
79
80
81#
82# tstSDL
83#
84tstSDL_TEMPLATE = VBOXR3NPEXE
85tstSDL_SDKS = LIBSDL
86tstSDL_INST = $(INST_TESTCASE)
87tstSDL_SOURCES = \
88 VBoxSDLTest.cpp
89tstSDL_DEFS = IN_RING3 IN_RT_R3 _GNU_SOURCE
90tstSDL_DEFS.win.x86 = _WIN32_WINNT=0x0500
91ifdef VBOX_OPENGL
92tstSDL_DEFS.linux = VBOX_OPENGL
93endif
94tstSDL_INCS = \
95 $(PATH_tstSDL)
96
97tstSDL_LIBS = \
98 $(LIB_RUNTIME)
99ifneq ($(filter-out win,$(BUILD_TARGET)),) # someone PLEASE explain why we don't use sdl main!
100tstSDL_LIBS += \
101 $(LIB_SDK_LIBSDL_SDLMAIN)
102endif
103ifdef VBOX_OPENGL
104tstSDL_LIBS.linux += GL
105endif
106tstSDL_LIBPATH.linux = \
107 $(VBOX_LIBPATH_X11)
108tstSDL_LDFLAGS.darwin = \
109 -framework Foundation -framework AppKit
110
111tstSDL_CXXFLAGS.win = \
112 -EHsc
113tstSDL_CXXFLAGS.linux = \
114 -DNDEBUG -DTRIMMED -O -Wall -fno-rtti -fno-exceptions \
115 -Wno-non-virtual-dtor -Wno-long-long -fshort-wchar -pthread -pipe
116
117
118# generate rules
119include $(PATH_KBUILD)/footer.kmk
120
121
122# Convert the pnm-file to a byte array.
123$(PATH_VBoxSDL)/Ico64x01.h: ico64x01.pnm $(VBOX_BIN2C) | $(call DIRDEP,$(PATH_VBoxSDL))
124 $(call MSG_TOOL,bin2c,VBoxSDL,$<,$@)
125 $(QUIET)$(VBOX_BIN2C) Ico64x01 $< $@
126
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