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 |
|
---|
22 | DEPTH = ../../../..
|
---|
23 | include $(PATH_KBUILD)/header.kmk
|
---|
24 |
|
---|
25 | PROGRAMS = VBoxSDL tstSDL
|
---|
26 |
|
---|
27 |
|
---|
28 | #
|
---|
29 | # VBoxSDL
|
---|
30 | #
|
---|
31 |
|
---|
32 | VBoxSDL_TEMPLATE = VBOXMAINCLIENTEXE
|
---|
33 | VBoxSDL_SDKS = LIBSDL
|
---|
34 | VBoxSDL_SOURCES = \
|
---|
35 | VBoxSDL.cpp \
|
---|
36 | Framebuffer.cpp \
|
---|
37 | Helper.cpp
|
---|
38 | ifndef VBOX_OSE
|
---|
39 | VBoxSDL_SOURCES.win= \
|
---|
40 | win32/WinUI.cpp \
|
---|
41 | win32/TitlebarButtons.cpp \
|
---|
42 | win32/VBoxSDL.rc
|
---|
43 | endif
|
---|
44 | VBoxSDL_DEFS =
|
---|
45 | ifdef VBOX_WITH_SECURELABEL
|
---|
46 | VBoxSDL_DEFS += VBOX_SECURELABEL
|
---|
47 | endif
|
---|
48 | ifdef VBOX_WITH_VRDP
|
---|
49 | VBoxSDL_DEFS += VBOX_VRDP
|
---|
50 | endif
|
---|
51 | VBoxSDL_DEFS.linux = _GNU_SOURCE
|
---|
52 | ifdef VBOX_OPENGL
|
---|
53 | #VBoxSDL_DEFS.linux += VBOX_OPENGL
|
---|
54 | endif
|
---|
55 | ifndef VBOX_OSE
|
---|
56 | VBoxSDL_DEFS.win = VBOX_WIN32_UI
|
---|
57 | endif
|
---|
58 | VBoxSDL_DEFS.win.x86 = _WIN32_WINNT=0x0500
|
---|
59 | VBoxSDL_DEFS.win.amd64 = _WIN32_WINNT=0x0510
|
---|
60 | VBoxSDL_INCS = \
|
---|
61 | $(PATH_BIN)/sdk/include \
|
---|
62 | $(PATH_VBoxSDL)
|
---|
63 | ifndef ($(filter-out win,$(BUILD_TARGET),)
|
---|
64 | VBoxSDL_LIBS = \
|
---|
65 | $(LIB_SDK_LIBSDL_SDLMAIN)
|
---|
66 | endif
|
---|
67 | VBoxSDL_LIBS.linux = \
|
---|
68 | $(LIB_XCURSOR)
|
---|
69 | VBoxSDL_LDFLAGS.darwin = \
|
---|
70 | -framework Foundation -framework AppKit
|
---|
71 | ifdef VBOX_OPENGL
|
---|
72 | #VBoxSDL_LIBS.linux += GL
|
---|
73 | endif
|
---|
74 | VBoxSDL_LIBPATH.linux = \
|
---|
75 | $(VBOX_LIBPATH_X11)
|
---|
76 |
|
---|
77 | VBoxSDL_CLEAN = $(PATH_VBoxSDL)/Ico64x01.h
|
---|
78 | Framebuffer.cpp_DEPS = $(PATH_VBoxSDL)/Ico64x01.h
|
---|
79 |
|
---|
80 |
|
---|
81 | #
|
---|
82 | # tstSDL
|
---|
83 | #
|
---|
84 | tstSDL_TEMPLATE = VBOXR3NPEXE
|
---|
85 | tstSDL_SDKS = LIBSDL
|
---|
86 | tstSDL_INST = $(INST_TESTCASE)
|
---|
87 | tstSDL_SOURCES = \
|
---|
88 | VBoxSDLTest.cpp
|
---|
89 | tstSDL_DEFS = IN_RING3 IN_RT_R3 _GNU_SOURCE
|
---|
90 | tstSDL_DEFS.win.x86 = _WIN32_WINNT=0x0500
|
---|
91 | ifdef VBOX_OPENGL
|
---|
92 | tstSDL_DEFS.linux = VBOX_OPENGL
|
---|
93 | endif
|
---|
94 | tstSDL_INCS = \
|
---|
95 | $(PATH_tstSDL)
|
---|
96 |
|
---|
97 | tstSDL_LIBS = \
|
---|
98 | $(LIB_RUNTIME)
|
---|
99 | ifneq ($(filter-out win,$(BUILD_TARGET)),) # someone PLEASE explain why we don't use sdl main!
|
---|
100 | tstSDL_LIBS += \
|
---|
101 | $(LIB_SDK_LIBSDL_SDLMAIN)
|
---|
102 | endif
|
---|
103 | ifdef VBOX_OPENGL
|
---|
104 | tstSDL_LIBS.linux += GL
|
---|
105 | endif
|
---|
106 | tstSDL_LIBPATH.linux = \
|
---|
107 | $(VBOX_LIBPATH_X11)
|
---|
108 | tstSDL_LDFLAGS.darwin = \
|
---|
109 | -framework Foundation -framework AppKit
|
---|
110 |
|
---|
111 | tstSDL_CXXFLAGS.win = \
|
---|
112 | -EHsc
|
---|
113 | tstSDL_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
|
---|
119 | include $(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 |
|
---|