Last change
on this file since 75815 was 75815, checked in by vboxsync, 6 years ago |
Improved cmd line options, and vm/media listing. Added partition mounting at FUSE level, Added support for MBR/EBR and GPT partition tables (ability to parse them and display summary information), and added self-sizing table class to neatly display partition data. (See #3641 for more information).
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.2 KB
|
Line | |
---|
1 | # $Id: Makefile.kmk 75815 2018-11-29 14:03:50Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the vboxraw Program.
|
---|
4 |
|
---|
5 | #
|
---|
6 | # Copyright (C) 2006-2018 Oracle Corporation
|
---|
7 | #
|
---|
8 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | # available from http://www.virtualbox.org. This file is free software;
|
---|
10 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | # General Public License (GPL) as published by the Free Software
|
---|
12 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | #
|
---|
16 |
|
---|
17 |
|
---|
18 | SUB_DEPTH = ../../../..
|
---|
19 | include $(KBUILD_PATH)/subheader.kmk
|
---|
20 |
|
---|
21 | #
|
---|
22 | # vboxraw - Disk Image Flatting FUSE Program.
|
---|
23 | #
|
---|
24 | PROGRAMS += vboxraw
|
---|
25 |
|
---|
26 | vboxraw_TEMPLATE = VBOXMAINCLIENTEXE
|
---|
27 | vboxraw_DEFS.darwin = __FreeBSD_==10
|
---|
28 | vboxraw_DEFS = _FILE_OFFSET_BITS=64
|
---|
29 |
|
---|
30 | vboxraw_SOURCES = \
|
---|
31 | vboxraw.cpp \
|
---|
32 | vboxraw.h \
|
---|
33 | SelfSizingTable.h
|
---|
34 |
|
---|
35 | vboxraw_LIBS = \
|
---|
36 | $(LIB_DDU) \
|
---|
37 | $(LIB_RUNTIME)
|
---|
38 |
|
---|
39 | vboxraw_INCS.darwin = \
|
---|
40 | /usr/local/include \
|
---|
41 | /usr/local/include/osxfuse \
|
---|
42 | vboxraw_CXXFLAGS.darwin = -std=c++11
|
---|
43 |
|
---|
44 | vboxraw_LIBS.darwin = /usr/local/lib/libosxfuse.dylib
|
---|
45 | vboxraw_LIBS.linux = fuse
|
---|
46 | vboxraw_LIBS.freebsd = fuse
|
---|
47 |
|
---|
48 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
Note:
See
TracBrowser
for help on using the repository browser.