- Timestamp:
- Aug 29, 2008 8:31:36 PM (16 years ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/Makefile.kmk
r11793 r11848 153 153 VirtualBox.chm 154 154 endif 155 ifneq ($(wildcard $( PATH_BIN)/VirtualBoxAPI.chm),)155 ifneq ($(wildcard $(VBOX_PATH_SDK)/docs/VirtualBoxAPI.chm),) 156 156 # same applies to VirtualBoxAPI.chm 157 157 LINUXNOSTRIP += \ … … 262 262 $(VBOX_VERSION_STAMP) 263 263 $(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 265 265 endif 266 266 -
trunk/src/VBox/Main/Doxyfile.Main
r9298 r11848 31 31 # where doxygen was started. If left blank the current directory will be used. 32 32 33 OUTPUT_DIRECTORY = $( PATH_OUT)/docs/Main33 OUTPUT_DIRECTORY = $(DOCDIR) 34 34 35 35 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create … … 406 406 # to stderr. 407 407 408 WARN_LOGFILE = $(PATH_ OUT)/docs/Main.err408 WARN_LOGFILE = $(PATH_TARGET)/Main.err 409 409 410 410 #--------------------------------------------------------------------------- -
trunk/src/VBox/Main/Makefile.kmk
r11837 r11848 140 140 docs: $(PATH_TARGET)/docs.Main 141 141 142 DOCDIR = $(VBOX_PATH_SDK)/docs/ 143 142 144 $(PATH_TARGET)/docs.Main: \ 143 145 $(VBOX_PATH_MAIN_SRC)/Doxyfile.Main \ … … 145 147 $(VBOX_PATH_MAIN_SRC)/idl/VirtualBox.xidl \ 146 148 | $(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/*) 149 151 $(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)' \ 151 153 -- 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) 153 155 $(APPEND) $(PATH_TARGET)/docs.Main 154 156 155 $(call DIRDEP, $( PATH_OUT)/docs/Main):157 $(call DIRDEP, $(DOCDIR)): 156 158 $(MKDIR) -p $@ 157 159 … … 659 661 else 660 662 661 testidl: $(IDLFILE ) $(IDLFILE.MSCOM) $(PATH_VBoxCOM)/VirtualBox_i.c663 testidl: $(IDLFILE.MSCOM) $(PATH_VBoxCOM)/VirtualBox_i.c 662 664 663 665 endif -
trunk/src/VBox/Main/testcase/Makefile.kmk
r11802 r11848 59 59 samples_INST = $(INST_SDK)bindings/xpcom/samples/ 60 60 samples_SOURCES = tstVBoxAPILinux.cpp makefile.tstVBoxAPILinux=>Makefile 61 ifdef VBOX_WITH_TESTCASES62 samples_SYMLINKS = tstVBoxAPILinux=>../../../tstVBoxAPILinux63 endif64 61 endif 65 62 -
trunk/src/libs/Makefile.kmk
r11703 r11848 57 57 endif # !VBOX_ONLY_DOCS 58 58 59 59 60 # Main related things - XML and XSLT, XPCOM. 60 61 ifndef VBOX_ONLY_DOCS … … 88 89 include $(KBUILD_PATH)/header.kmk 89 90 91 subdirs := liblzf-1.51 $(subdirs.$(KBUILD_TARGET)) 90 92 91 subdirs := liblzf-1.51 $(subdirs.$(KBUILD_TARGET))92 93 ifdef IPRT_WITH_KSTUFF 93 94 subdirs += kStuff … … 97 98 #ifndef VBOX_OSE 98 99 ifeq ($(SDK_VBOX_ZLIB_INCS),$(PATH_ROOT)/src/libs/zlib-1.2.1) 99 subdirs += zlib-1.2.1100 subdirs += zlib-1.2.1 100 101 endif 101 102 ifeq ($(SDK_VBOX_LIBPNG_INCS),$(PATH_ROOT)/src/libs/libpng-1.2.8) … … 140 141 endif 141 142 143 ifdef 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)) 145 endif 146 142 147 # optimized walking 143 148 SUBDIRS_BLDPROGS = $(filter xpcom18a4,$(subdirs)) -
trunk/src/libs/xpcom18a4/python/sample/vboxshell.py
r11823 r11848 5 5 # information and issue commands from a simple command line. # 6 6 # # 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. # 8 8 # This shell is even somewhat documented and supports TAB-completion and # 9 9 # history if you have Python readline installed. #
Note:
See TracChangeset
for help on using the changeset viewer.