VirtualBox

source: vbox/trunk/src/VBox/Disassembler/Makefile.kmk@ 4953

Last change on this file since 4953 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.9 KB
Line 
1# $Id: Makefile.kmk 4071 2007-08-07 17:07:59Z vboxsync $
2## @file
3# Makefile for the VBox Disassembler.
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
20
21PROGRAMS = tstDisasmCore tstDisasm
22LIBRARIES = DisasmR3 DisasmCoreR3 DisasmGC DisasmR0
23
24DisasmR3_TEMPLATE = VBOXR3
25ifeq ($(BUILD_TARGET),win)
26DisasmR3_CXXFLAGS += -EHa
27else
28 ifneq ($(BUILD_TARGET),l4)
29DisasmR3_CXXFLAGS += -fexceptions
30 endif
31endif
32DisasmR3_SOURCES = Disasm.cpp DisasmCore.cpp DisasmTables.cpp
33DisasmR3_DEFS = IN_DIS_R3
34
35DisasmCoreR3_TEMPLATE = VBOXR3
36DisasmCoreR3_SOURCES = DisasmCore.cpp DisasmTables.cpp
37DisasmCoreR3_DEFS = IN_DIS_R3 DIS_CORE_ONLY
38
39DisasmGC_TEMPLATE = VBOXGC
40DisasmGC_SOURCES = DisasmCore.cpp DisasmTables.cpp
41DisasmGC_DEFS = IN_DIS_GC IN_RT_GC DIS_CORE_ONLY
42
43DisasmR0_TEMPLATE = VBOXR0
44DisasmR0_SOURCES = DisasmCore.cpp DisasmTables.cpp
45DisasmR0_DEFS = IN_DIS_R0 IN_RT_R0 DIS_CORE_ONLY
46
47tstDisasm_TEMPLATE = VBOXR3TSTEXE
48tstDisasm_SOURCES = DisasmTest.cpp DisasmTestA.asm
49tstDisasm_DEFS = IN_DIS_R3
50tstDisasm_LIBS = \
51 $(PATH_LIB)/DisasmR3$(VBOX_SUFF_LIB) \
52 $(LIB_RUNTIME)
53
54tstDisasmCore_TEMPLATE = VBOXR3TSTEXE
55tstDisasmCore_SOURCES = DisasmTestCore.cpp
56tstDisasmCore_DEFS = IN_DIS_R3 DIS_CORE_ONLY
57tstDisasmCore_LIBS = \
58 $(PATH_LIB)/DisasmCoreR3$(VBOX_SUFF_LIB) \
59 $(LIB_RUNTIME)
60
61include $(PATH_KBUILD)/footer.kmk
62
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