Changeset 11848 in vbox for trunk/src/VBox
- Timestamp:
- Aug 29, 2008 8:31:36 PM (16 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 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
Note:
See TracChangeset
for help on using the changeset viewer.