VirtualBox

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

Last change on this file since 4899 was 4888, checked in by vboxsync, 18 years ago

FreeBSD patches.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 KB
Line 
1# $Id: Makefile.kmk 4888 2007-09-19 07:59:52Z 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
17DEPTH = ../../../..
18include $(PATH_KBUILD)/header.kmk
19
20PROGRAMS = VBoxSDL tstSDL
21
22
23#
24# VBoxSDL
25#
26
27VBoxSDL_TEMPLATE = VBOXMAINCLIENTEXE
28VBoxSDL_SDKS = LIBSDL
29VBoxSDL_SOURCES = \
30 VBoxSDL.cpp \
31 Framebuffer.cpp \
32 Helper.cpp
33ifndef VBOX_OSE
34 VBoxSDL_SOURCES.win= \
35 win32/WinUI.cpp \
36 win32/TitlebarButtons.cpp \
37 win32/VBoxSDL.rc
38endif
39VBoxSDL_DEFS =
40ifdef VBOX_WITH_SECURELABEL
41 VBoxSDL_DEFS += VBOX_SECURELABEL
42endif
43ifdef VBOX_WITH_VRDP
44 VBoxSDL_DEFS += VBOX_VRDP
45endif
46VBoxSDL_DEFS.freebsd = VBOXSDL_WITH_X11
47VBoxSDL_DEFS.linux = _GNU_SOURCE VBOXSDL_WITH_X11
48VBoxSDL_DEFS.solaris = VBOXSDL_WITH_X11
49VBoxSDL_DEFS.solaris += VBOX_WITHOUT_XCURSOR ## @todo build xcursor or something.
50ifdef VBOX_OPENGL
51 #VBoxSDL_DEFS.linux += VBOX_OPENGL
52endif
53ifndef VBOX_OSE
54 VBoxSDL_DEFS.win = VBOX_WIN32_UI
55endif
56VBoxSDL_DEFS.win.x86 = _WIN32_WINNT=0x0500
57VBoxSDL_DEFS.win.amd64 = _WIN32_WINNT=0x0510
58VBoxSDL_INCS = \
59 $(PATH_BIN)/sdk/include \
60 $(PATH_VBoxSDL)
61ifndef ($(filter-out win solaris,$(BUILD_TARGET),)
62VBoxSDL_LIBS = \
63 $(LIB_SDK_LIBSDL_SDLMAIN)
64endif
65ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(BUILD_TARGET)),) # X11
66ifneq ($(BUILD_TARGET),solaris) ## @todo Xcursor on solaris.
67VBoxSDL_LIBS += \
68 $(LIB_XCURSOR)
69endif
70VBoxSDL_LIBPATH = \
71 $(VBOX_LIBPATH_X11)
72endif
73VBoxSDL_LIBS.solaris = \
74 $(LIB_X11)
75ifdef VBOX_OPENGL
76 #VBoxSDL_LIBS.linux += GL
77endif
78VBoxSDL_LDFLAGS.darwin = \
79 -framework Foundation -framework AppKit
80
81VBoxSDL_CLEAN = $(PATH_VBoxSDL)/Ico64x01.h
82Framebuffer.cpp_DEPS = $(PATH_VBoxSDL)/Ico64x01.h
83
84
85#
86# tstSDL
87#
88tstSDL_TEMPLATE = VBOXR3NPEXE
89tstSDL_SDKS = LIBSDL
90tstSDL_INST = $(INST_TESTCASE)
91tstSDL_SOURCES = \
92 VBoxSDLTest.cpp
93tstSDL_DEFS = IN_RING3 IN_RT_R3 _GNU_SOURCE
94tstSDL_DEFS.win.x86 = _WIN32_WINNT=0x0500
95ifdef VBOX_OPENGL
96tstSDL_DEFS.linux = VBOX_OPENGL
97endif
98tstSDL_INCS = \
99 $(PATH_tstSDL)
100
101tstSDL_LIBS = \
102 $(LIB_RUNTIME)
103ifneq ($(filter-out win,$(BUILD_TARGET)),) # someone PLEASE explain why we don't use sdl main!
104tstSDL_LIBS += \
105 $(LIB_SDK_LIBSDL_SDLMAIN)
106endif
107
108ifdef VBOX_OPENGL
109tstSDL_LIBS.linux += GL
110endif
111ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(BUILD_TARGET)),) # X11
112tstSDL_LIBPATH = \
113 $(VBOX_LIBPATH_X11)
114endif
115
116tstSDL_LDFLAGS.darwin = \
117 -framework Foundation -framework AppKit
118
119tstSDL_CXXFLAGS.win = \
120 -EHsc
121tstSDL_CXXFLAGS.linux = \
122 -DNDEBUG -DTRIMMED -O -Wall -fno-rtti -fno-exceptions \
123 -Wno-non-virtual-dtor -Wno-long-long -fshort-wchar -pthread -pipe
124
125
126# generate rules
127include $(PATH_KBUILD)/footer.kmk
128
129
130# Convert the pnm-file to a byte array.
131$(PATH_VBoxSDL)/Ico64x01.h: ico64x01.pnm $(VBOX_BIN2C) | $(call DIRDEP,$(PATH_VBoxSDL))
132 $(call MSG_TOOL,bin2c,VBoxSDL,$<,$@)
133 $(QUIET)$(VBOX_BIN2C) Ico64x01 $< $@
134
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette