VirtualBox

Changeset 11848 in vbox for trunk/src


Ignore:
Timestamp:
Aug 29, 2008 8:31:36 PM (16 years ago)
Author:
vboxsync
Message:

docs, other sdk cleanups

Location:
trunk/src
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Installer/linux/Makefile.kmk

    r11793 r11848  
    153153        VirtualBox.chm
    154154 endif
    155  ifneq ($(wildcard $(PATH_BIN)/VirtualBoxAPI.chm),)
     155 ifneq ($(wildcard $(VBOX_PATH_SDK)/docs/VirtualBoxAPI.chm),)
    156156 # same applies to VirtualBoxAPI.chm
    157157 LINUXNOSTRIP += \
     
    262262                $(VBOX_VERSION_STAMP)
    263263        $(call MSG_L1,Making SDK delivery $@)
    264         $(QUIET)$(REDIRECT) -C $(PATH_BIN) -- zip -r9 $@ sdk
     264        $(QUIET)$(REDIRECT) -C $(PATH_BIN) -- zip -r9 $@ sdk > /dev/null
    265265endif
    266266
  • trunk/src/VBox/Main/Doxyfile.Main

    r9298 r11848  
    3131# where doxygen was started. If left blank the current directory will be used.
    3232
    33 OUTPUT_DIRECTORY       = $(PATH_OUT)/docs/Main
     33OUTPUT_DIRECTORY       = $(DOCDIR)
    3434
    3535# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
     
    406406# to stderr.
    407407
    408 WARN_LOGFILE           = $(PATH_OUT)/docs/Main.err
     408WARN_LOGFILE           = $(PATH_TARGET)/Main.err
    409409
    410410#---------------------------------------------------------------------------
  • trunk/src/VBox/Main/Makefile.kmk

    r11837 r11848  
    140140docs: $(PATH_TARGET)/docs.Main
    141141
     142DOCDIR = $(VBOX_PATH_SDK)/docs/
     143
    142144$(PATH_TARGET)/docs.Main: \
    143145                $(VBOX_PATH_MAIN_SRC)/Doxyfile.Main \
     
    145147                $(VBOX_PATH_MAIN_SRC)/idl/VirtualBox.xidl \
    146148                | $(call DIRDEP, $(PATH_TARGET)) \
    147                   $(call DIRDEP, $(PATH_OUT)/docs/Main)
    148         $(RM) -f $(wildcard $(PATH_OUT)/docs/Main/html/*)
     149                  $(call DIRDEP, $(DOCDIR))
     150        $(RM) -f $(wildcard $(DOCDIR)/html/*)
    149151        $(VBOX_XSLTPROC) -o $(PATH_TARGET)/VirtualBox.idl $(VBOX_PATH_MAIN_SRC)/idl/doxygen.xsl $(VBOX_PATH_MAIN_SRC)/idl/VirtualBox.xidl
    150         $(REDIRECT) -E 'PATH_OUT=$(PATH_OUT)' -E 'PATH_TARGET=$(PATH_TARGET)' -E 'PATH_CHM=$(subst /,\,$(PATH_BIN)/VirtualBoxAPI.chm)' \
     152        $(REDIRECT) -E 'DOCDIR=$(DOCDIR)' -E 'PATH_TARGET=$(PATH_TARGET)' -E 'PATH_CHM=$(subst /,\,$(DOCDIR)/VirtualBoxAPI.chm)' \
    151153                -- doxygen $(VBOX_PATH_MAIN_SRC)/Doxyfile.Main
    152         -$(EXEC_X86_WIN32) $(VBOX_PATH_HTML_HELP_WORKSHOP)/hhc.exe $(subst /,\\,$(PATH_OUT)/docs/Main/html/index.hhp)
     154        -$(EXEC_X86_WIN32) $(VBOX_PATH_HTML_HELP_WORKSHOP)/hhc.exe $(subst /,\\,$(DOCDIR)/html/index.hhp)
    153155        $(APPEND) $(PATH_TARGET)/docs.Main
    154156
    155 $(call DIRDEP, $(PATH_OUT)/docs/Main):
     157$(call DIRDEP, $(DOCDIR)):
    156158        $(MKDIR) -p $@
    157159
     
    659661else
    660662
    661 testidl: $(IDLFILE) $(IDLFILE.MSCOM) $(PATH_VBoxCOM)/VirtualBox_i.c
     663testidl: $(IDLFILE.MSCOM) $(PATH_VBoxCOM)/VirtualBox_i.c
    662664
    663665endif
  • trunk/src/VBox/Main/testcase/Makefile.kmk

    r11802 r11848  
    5959 samples_INST = $(INST_SDK)bindings/xpcom/samples/
    6060 samples_SOURCES = tstVBoxAPILinux.cpp makefile.tstVBoxAPILinux=>Makefile
    61  ifdef VBOX_WITH_TESTCASES
    62  samples_SYMLINKS = tstVBoxAPILinux=>../../../tstVBoxAPILinux
    63  endif
    6461endif
    6562
  • trunk/src/libs/Makefile.kmk

    r11703 r11848  
    5757endif # !VBOX_ONLY_DOCS
    5858
     59
    5960# Main related things - XML and XSLT, XPCOM.
    6061ifndef VBOX_ONLY_DOCS
     
    8889include $(KBUILD_PATH)/header.kmk
    8990
     91subdirs := liblzf-1.51 $(subdirs.$(KBUILD_TARGET))
    9092
    91 subdirs := liblzf-1.51 $(subdirs.$(KBUILD_TARGET))
    9293ifdef IPRT_WITH_KSTUFF
    9394 subdirs += kStuff
     
    9798#ifndef VBOX_OSE
    9899 ifeq ($(SDK_VBOX_ZLIB_INCS),$(PATH_ROOT)/src/libs/zlib-1.2.1)
    99   subdirs += zlib-1.2.1
     100   subdirs += zlib-1.2.1
    100101 endif
    101102 ifeq ($(SDK_VBOX_LIBPNG_INCS),$(PATH_ROOT)/src/libs/libpng-1.2.8)
     
    140141endif
    141142
     143ifdef VBOX_ONLY_SDK
     144 subdirs := $(filter-out liblzf-1.51 zlib-1.2.1 libpng-1.2.8 openssl-0.9.7e openssl-0.9.8h ffmpeg-20060710, $(subdirs))
     145endif
     146
    142147# optimized walking
    143148SUBDIRS_BLDPROGS       = $(filter xpcom18a4,$(subdirs))
  • trunk/src/libs/xpcom18a4/python/sample/vboxshell.py

    r11823 r11848  
    55# information and issue commands from a simple command line.                    #
    66#                                                                               #
    7 # It also provides you with examples on how to use VirtualBox' Python API.      #
     7# It also provides you with examples on how to use VirtualBox's Python API.     #
    88# This shell is even somewhat documented and supports TAB-completion and        #
    99# history if you have Python readline installed.                                #
Note: See TracChangeset for help on using the changeset viewer.

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