Changeset 35381 in vbox for trunk/src/VBox
- Timestamp:
- Dec 30, 2010 4:12:47 PM (14 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/Makefile.kmk
r32690 r35381 95 95 $(PATH_TARGET)/VBoxGuestCat.dir 96 96 97 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.inf: $(PATH_SUB_CURRENT)/common/VBoxGuest/win/VBoxGuest.inf $(MAKEFILE_CURRENT) | $$( call DIRDEP,$$(@D))97 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.inf: $(PATH_SUB_CURRENT)/common/VBoxGuest/win/VBoxGuest.inf $(MAKEFILE_CURRENT) | $$(dir $$@) 98 98 $(call MSG_GENERATE,VBoxGuest-inf,$@,$<) 99 99 $(call VBOX_EDIT_INF_FN,$<,$@) 100 100 101 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.sys: $$(TARGET_VBoxGuest) | $$( call DIRDEP,$$(@D))101 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.sys: $$(TARGET_VBoxGuest) | $$(dir $$@) 102 102 $(INSTALL) -m 644 $< $(@D) 103 103 104 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxControl.exe: $$(TARGET_VBoxControl) | $$( call DIRDEP,$$(@D))104 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxControl.exe: $$(TARGET_VBoxControl) | $$(dir $$@) 105 105 $(INSTALL) -m 755 $< $(@D) 106 106 107 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxTray.exe: $$(TARGET_VBoxTray) | $$( call DIRDEP,$$(@D))107 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxTray.exe: $$(TARGET_VBoxTray) | $$(dir $$@) 108 108 $(INSTALL) -m 755 $< $(@D) 109 109 110 $(PATH_TARGET)/VBoxGuestCat.dir/VBCoInst.dll: $$(TARGET_VBCoInst) | $$( call DIRDEP,$$(@D))110 $(PATH_TARGET)/VBoxGuestCat.dir/VBCoInst.dll: $$(TARGET_VBCoInst) | $$(dir $$@) 111 111 $(INSTALL) -m 644 $< $(@D) 112 112 -
trunk/src/VBox/Additions/WINNT/Graphics/Makefile.kmk
r35351 r35381 46 46 $(PATH_TARGET)/VBoxVideoCat.dir 47 47 48 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.inf: $(PATH_SUB_CURRENT)/Miniport/VBoxVideo.inf $(MAKEFILE_CURRENT) | $$( call DIRDEP,$$(@D))48 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.inf: $(PATH_SUB_CURRENT)/Miniport/VBoxVideo.inf $(MAKEFILE_CURRENT) | $$(dir $$@) 49 49 $(call MSG_GENERATE,VBoxVideo-inf,$@,$<) 50 50 $(call VBOX_EDIT_INF_FN,$<,$@) 51 51 52 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.sys: $$(TARGET_VBoxVideo) | $$( call DIRDEP,$$(@D))53 $(INSTALL) -m 644 $< $(@D) 54 55 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxDisp.dll: $$(TARGET_VBoxDisp) | $$( call DIRDEP,$$(@D))52 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.sys: $$(TARGET_VBoxVideo) | $$(dir $$@) 53 $(INSTALL) -m 644 $< $(@D) 54 55 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxDisp.dll: $$(TARGET_VBoxDisp) | $$(dir $$@) 56 56 $(INSTALL) -m 644 $< $(@D) 57 57 … … 122 122 VBOXWDDM_EDIT_INF_GL_FN_ARG = $(if $(VBOXWDDM_WITH_GL),-e 's/^;gl *//', -e '/^;gl /d') 123 123 124 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxVideoWddm.inf: $(PATH_SUB_CURRENT)/Miniport/wddm/VBoxVideoWddm.inf $(MAKEFILE_CURRENT) | $$( call DIRDEP,$$(@D))124 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxVideoWddm.inf: $(PATH_SUB_CURRENT)/Miniport/wddm/VBoxVideoWddm.inf $(MAKEFILE_CURRENT) | $$(dir $$@) 125 125 $(call MSG_GENERATE,VBoxVideoWddm-inf,$@,$<) 126 126 $(call VBOX_EDIT_INF_FN,$<,$@ $(VBOXWDDM_EDIT_INF_DISPD3D_FN_ARG) $(VBOXWDDM_EDIT_INF_GL_FN_ARG)) 127 127 128 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxVideoWddm.sys: $$(TARGET_VBoxVideoWddm) | $$( call DIRDEP,$$(@D))128 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxVideoWddm.sys: $$(TARGET_VBoxVideoWddm) | $$(dir $$@) 129 129 $(INSTALL) -m 644 $< $(@D) 130 130 131 131 ifdef VBOXWDDM_WITH_DISPD3D 132 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxDispD3D.dll: $$(TARGET_VBoxDispD3D) | $$( call DIRDEP,$$(@D))132 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxDispD3D.dll: $$(TARGET_VBoxDispD3D) | $$(dir $$@) 133 133 $(INSTALL) -m 644 $< $(@D) 134 134 135 135 ifeq ($(KBUILD_TARGET_ARCH),amd64) 136 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxDispD3D-x86.dll: $$(TARGET_VBoxDispD3D-x86) | $$( call DIRDEP,$$(@D))136 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxDispD3D-x86.dll: $$(TARGET_VBoxDispD3D-x86) | $$(dir $$@) 137 137 $(INSTALL) -m 644 $< $(@D) 138 138 endif … … 140 140 141 141 ifdef VBOXWDDM_WITH_GL 142 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGL.dll: $$(TARGET_VBoxOGL) | $$( call DIRDEP,$$(@D))143 $(INSTALL) -m 644 $< $(@D) 144 145 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxD3D9wddm.dll: $$(TARGET_VBoxD3D9wddm) | $$( call DIRDEP,$$(@D))146 $(INSTALL) -m 644 $< $(@D) 147 148 $(PATH_TARGET)/VBoxVideoWddmCat.dir/wined3dwddm.dll: $$(TARGET_wined3dwddm) | $$( call DIRDEP,$$(@D))149 $(INSTALL) -m 644 $< $(@D) 150 151 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLarrayspu.dll: $$(TARGET_VBoxOGLarrayspu) | $$( call DIRDEP,$$(@D))152 $(INSTALL) -m 644 $< $(@D) 153 154 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLcrutil.dll: $$(TARGET_VBoxOGLcrutil) | $$( call DIRDEP,$$(@D))155 $(INSTALL) -m 644 $< $(@D) 156 157 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLerrorspu.dll: $$(TARGET_VBoxOGLerrorspu) | $$( call DIRDEP,$$(@D))158 $(INSTALL) -m 644 $< $(@D) 159 160 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLfeedbackspu.dll: $$(TARGET_VBoxOGLfeedbackspu) | $$( call DIRDEP,$$(@D))161 $(INSTALL) -m 644 $< $(@D) 162 163 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLpackspu.dll: $$(TARGET_VBoxOGLpackspu) | $$( call DIRDEP,$$(@D))164 $(INSTALL) -m 644 $< $(@D) 165 166 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLpassthroughspu.dll: $$(TARGET_VBoxOGLpassthroughspu) | $$( call DIRDEP,$$(@D))142 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGL.dll: $$(TARGET_VBoxOGL) | $$(dir $$@) 143 $(INSTALL) -m 644 $< $(@D) 144 145 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxD3D9wddm.dll: $$(TARGET_VBoxD3D9wddm) | $$(dir $$@) 146 $(INSTALL) -m 644 $< $(@D) 147 148 $(PATH_TARGET)/VBoxVideoWddmCat.dir/wined3dwddm.dll: $$(TARGET_wined3dwddm) | $$(dir $$@) 149 $(INSTALL) -m 644 $< $(@D) 150 151 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLarrayspu.dll: $$(TARGET_VBoxOGLarrayspu) | $$(dir $$@) 152 $(INSTALL) -m 644 $< $(@D) 153 154 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLcrutil.dll: $$(TARGET_VBoxOGLcrutil) | $$(dir $$@) 155 $(INSTALL) -m 644 $< $(@D) 156 157 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLerrorspu.dll: $$(TARGET_VBoxOGLerrorspu) | $$(dir $$@) 158 $(INSTALL) -m 644 $< $(@D) 159 160 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLfeedbackspu.dll: $$(TARGET_VBoxOGLfeedbackspu) | $$(dir $$@) 161 $(INSTALL) -m 644 $< $(@D) 162 163 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLpackspu.dll: $$(TARGET_VBoxOGLpackspu) | $$(dir $$@) 164 $(INSTALL) -m 644 $< $(@D) 165 166 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLpassthroughspu.dll: $$(TARGET_VBoxOGLpassthroughspu) | $$(dir $$@) 167 167 $(INSTALL) -m 644 $< $(@D) 168 168 169 169 ifeq ($(KBUILD_TARGET_ARCH), amd64) 170 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGL-x86.dll: $$(TARGET_VBoxOGL-x86) | $$( call DIRDEP,$$(@D))171 $(INSTALL) -m 644 $< $(@D) 172 173 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxD3D9wddm-x86.dll: $$(TARGET_VBoxD3D9wddm-x86) | $$( call DIRDEP,$$(@D))174 $(INSTALL) -m 644 $< $(@D) 175 176 $(PATH_TARGET)/VBoxVideoWddmCat.dir/wined3dwddm-x86.dll: $$(TARGET_wined3dwddm-x86) | $$( call DIRDEP,$$(@D))177 $(INSTALL) -m 644 $< $(@D) 178 179 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLarrayspu-x86.dll: $$(TARGET_VBoxOGLarrayspu-x86) | $$( call DIRDEP,$$(@D))180 $(INSTALL) -m 644 $< $(@D) 181 182 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLcrutil-x86.dll: $$(TARGET_VBoxOGLcrutil-x86) | $$( call DIRDEP,$$(@D))183 $(INSTALL) -m 644 $< $(@D) 184 185 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLerrorspu-x86.dll: $$(TARGET_VBoxOGLerrorspu-x86) | $$( call DIRDEP,$$(@D))186 $(INSTALL) -m 644 $< $(@D) 187 188 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLfeedbackspu-x86.dll: $$(TARGET_VBoxOGLfeedbackspu-x86) | $$( call DIRDEP,$$(@D))189 $(INSTALL) -m 644 $< $(@D) 190 191 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLpackspu-x86.dll: $$(TARGET_VBoxOGLpackspu-x86) | $$( call DIRDEP,$$(@D))192 $(INSTALL) -m 644 $< $(@D) 193 194 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLpassthroughspu-x86.dll: $$(TARGET_VBoxOGLpassthroughspu-x86) | $$( call DIRDEP,$$(@D))170 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGL-x86.dll: $$(TARGET_VBoxOGL-x86) | $$(dir $$@) 171 $(INSTALL) -m 644 $< $(@D) 172 173 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxD3D9wddm-x86.dll: $$(TARGET_VBoxD3D9wddm-x86) | $$(dir $$@) 174 $(INSTALL) -m 644 $< $(@D) 175 176 $(PATH_TARGET)/VBoxVideoWddmCat.dir/wined3dwddm-x86.dll: $$(TARGET_wined3dwddm-x86) | $$(dir $$@) 177 $(INSTALL) -m 644 $< $(@D) 178 179 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLarrayspu-x86.dll: $$(TARGET_VBoxOGLarrayspu-x86) | $$(dir $$@) 180 $(INSTALL) -m 644 $< $(@D) 181 182 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLcrutil-x86.dll: $$(TARGET_VBoxOGLcrutil-x86) | $$(dir $$@) 183 $(INSTALL) -m 644 $< $(@D) 184 185 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLerrorspu-x86.dll: $$(TARGET_VBoxOGLerrorspu-x86) | $$(dir $$@) 186 $(INSTALL) -m 644 $< $(@D) 187 188 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLfeedbackspu-x86.dll: $$(TARGET_VBoxOGLfeedbackspu-x86) | $$(dir $$@) 189 $(INSTALL) -m 644 $< $(@D) 190 191 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLpackspu-x86.dll: $$(TARGET_VBoxOGLpackspu-x86) | $$(dir $$@) 192 $(INSTALL) -m 644 $< $(@D) 193 194 $(PATH_TARGET)/VBoxVideoWddmCat.dir/VBoxOGLpassthroughspu-x86.dll: $$(TARGET_VBoxOGLpassthroughspu-x86) | $$(dir $$@) 195 195 $(INSTALL) -m 644 $< $(@D) 196 196 endif -
trunk/src/VBox/Additions/WINNT/MouseFilter/Makefile.kmk
r28800 r35381 53 53 VBoxMouse-inf_BLDDIRS = $(PATH_TARGET)/VBoxMouseCat.dir 54 54 55 $(PATH_TARGET)/VBoxMouseCat.dir/VBoxMouse.inf: $(PATH_SUB_CURRENT)/VBoxMouse.inf $(MAKEFILE_CURRENT) | $$( call DIRDEP,$$(@D))55 $(PATH_TARGET)/VBoxMouseCat.dir/VBoxMouse.inf: $(PATH_SUB_CURRENT)/VBoxMouse.inf $(MAKEFILE_CURRENT) | $$(dir $$@) 56 56 $(call MSG_GENERATE,VBoxMouse-inf,$@,$<) 57 57 $(call VBOX_EDIT_INF_FN,$<,$@) -
trunk/src/VBox/Devices/PC/Etherboot-src/Makefile.kmk
r35367 r35381 153 153 154 154 # Rebuild everything whenever the Makefile etc. is changed. Must be LAST in the dependency list! 155 MAKEDEPS= $(PATH_SUB_CURRENT)/Makefile.kmk $(PATH_SUB_CURRENT)/Config $(PATH_SUB_CURRENT)/arch/$(ARCH)/Config | $( call DIRDEP,$(PATH_TARGET))155 MAKEDEPS= $(PATH_SUB_CURRENT)/Makefile.kmk $(PATH_SUB_CURRENT)/Config $(PATH_SUB_CURRENT)/arch/$(ARCH)/Config | $(PATH_TARGET)/ 156 156 157 157 # The core (card-independent part) of Etherboot. -
trunk/src/VBox/Disassembler/testcase/Makefile.kmk
r28800 r35381 77 77 $(VBOX_DISAS_TESTS_BIN:.asm=-64.bin)) 78 78 79 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BIN:.asm=-16.bin)): $(PATH_SUB_CURRENT)/$$(patsubst %-16.bin,%.asm,$$(notdir $$(@))) | $$( call DIRDEP,$$(@D))79 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BIN:.asm=-16.bin)): $(PATH_SUB_CURRENT)/$$(patsubst %-16.bin,%.asm,$$(notdir $$(@))) | $$(dir $$@) 80 80 @$(ECHO) "Assembling: $(<F) into $(@F)" 81 81 $(TOOL_YASM_AS) -f bin -a x86 --force-strict -DTEST_BITS=16 -o $@ $< 82 82 83 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BIN:.asm=-32.bin)): $(PATH_SUB_CURRENT)/$$(patsubst %-32.bin,%.asm,$$(notdir $$(@))) | $$( call DIRDEP,$$(@D))83 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BIN:.asm=-32.bin)): $(PATH_SUB_CURRENT)/$$(patsubst %-32.bin,%.asm,$$(notdir $$(@))) | $$(dir $$@) 84 84 @$(ECHO) "Assembling: $(<F) into $(@F)" 85 85 $(TOOL_YASM_AS) -f bin -a x86 --force-strict -DTEST_BITS=32 -o $@ $< 86 86 87 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BIN:.asm=-64.bin)): $(PATH_SUB_CURRENT)/$$(patsubst %-64.bin,%.asm,$$(notdir $$(@))) | $$( call DIRDEP,$$(@D))87 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BIN:.asm=-64.bin)): $(PATH_SUB_CURRENT)/$$(patsubst %-64.bin,%.asm,$$(notdir $$(@))) | $$(dir $$@) 88 88 @$(ECHO) "Assembling: $(<F) into $(@F)" 89 89 $(TOOL_YASM_AS) -f bin -a x86 --force-strict -DTEST_BITS=64 -o $@ $< … … 96 96 $(VBOX_DISAS_TESTS_BUILD:.asm=-64-disas.asm)) 97 97 98 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BUILD:.asm=-16-disas.asm)): $$(subst -disas.asm,.bin,$$@) $$(INSTARGET_tstDisasm-2) | $$( call DIRDEP,$$(@D))98 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BUILD:.asm=-16-disas.asm)): $$(subst -disas.asm,.bin,$$@) $$(INSTARGET_tstDisasm-2) | $$(dir $$@) 99 99 @$(ECHO) "Generating: $(@F) from $(<F)" 100 100 $(REDIRECT) -E VBOX_LOG_DEST=nofile -o $@ -- $(INSTARGET_tstDisasm-2) --style=yasm --cpumode=16 $< 101 101 102 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BUILD:.asm=-32-disas.asm)): $$(subst -disas.asm,.bin,$$@) $$(INSTARGET_tstDisasm-2) | $$( call DIRDEP,$$(@D))102 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BUILD:.asm=-32-disas.asm)): $$(subst -disas.asm,.bin,$$@) $$(INSTARGET_tstDisasm-2) | $$(dir $$@) 103 103 @$(ECHO) "Generating: $(@F) from $(<F)" 104 104 $(REDIRECT) -E VBOX_LOG_DEST=nofile -o $@ -- $(INSTARGET_tstDisasm-2) --style=yasm --cpumode=32 $< 105 105 106 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BUILD:.asm=-64-disas.asm)): $$(subst -disas.asm,.bin,$$@) $$(INSTARGET_tstDisasm-2) | $$( call DIRDEP,$$(@D))106 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BUILD:.asm=-64-disas.asm)): $$(subst -disas.asm,.bin,$$@) $$(INSTARGET_tstDisasm-2) | $$(dir $$@) 107 107 @$(ECHO) "Generating: $(@F) from $(<F)" 108 108 $(REDIRECT) -E VBOX_LOG_DEST=nofile -o $@ -- $(INSTARGET_tstDisasm-2) --style=yasm --cpumode=64 $< … … 114 114 $(VBOX_DISAS_TESTS_BUILD:.asm=-64-disas.bin)) 115 115 116 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BUILD:.asm=-16-disas.bin)): $$(subst .bin,.asm,$$@) | $$( call DIRDEP,$$(@D))116 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BUILD:.asm=-16-disas.bin)): $$(subst .bin,.asm,$$@) | $$(dir $$@) 117 117 @$(ECHO) "Re-assembling: $(<F) into $(@F)" 118 118 $(TOOL_YASM_AS) -f bin -a x86 --force-strict -DTEST_BITS=16 -o $@ $< 119 119 120 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BUILD:.asm=-32-disas.bin)): $$(subst .bin,.asm,$$@) | $$( call DIRDEP,$$(@D))120 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BUILD:.asm=-32-disas.bin)): $$(subst .bin,.asm,$$@) | $$(dir $$@) 121 121 @$(ECHO) "Re-assembling: $(<F) into $(@F)" 122 122 $(TOOL_YASM_AS) -f bin -a x86 --force-strict -DTEST_BITS=32 -o $@ $< 123 123 124 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BUILD:.asm=-64-disas.bin)): $$(subst .bin,.asm,$$@) | $$( call DIRDEP,$$(@D))124 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_BUILD:.asm=-64-disas.bin)): $$(subst .bin,.asm,$$@) | $$(dir $$@) 125 125 @$(ECHO) "Re-assembling: $(<F) into $(@F)" 126 126 $(TOOL_YASM_AS) -f bin -a x86 --force-strict -DTEST_BITS=64 -o $@ $< … … 131 131 $(VBOX_DISAS_TESTS_BUILD:.asm=-16.tst)\ 132 132 $(VBOX_DISAS_TESTS_BUILD:.asm=-32.tst)\ 133 $(VBOX_DISAS_TESTS_BUILD:.asm=-64.tst) ): $$(subst .tst,-disas.bin,$$@) | $$( call DIRDEP,$$(@D))133 $(VBOX_DISAS_TESTS_BUILD:.asm=-64.tst) ): $$(subst .tst,-disas.bin,$$@) | $$(dir $$@) 134 134 @$(ECHO) "Verifying build: $(<F) and $(@F:.tst=.bin)" 135 135 @$(RM) -f $@ … … 143 143 VBOX_DISAS_TESTS += $(foreach test, $(VBOX_DISAS_TESTS_INVALID:.asm=), $(test)-16.tst $(test)-32.tst $(test)-64.tst) 144 144 145 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_INVALID:.asm=-16.tst)): $$(patsubst %.tst,%.bin,$$@) $$(INSTARGET_tstDisasm-2) | $$( call DIRDEP,$$(@D))145 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_INVALID:.asm=-16.tst)): $$(patsubst %.tst,%.bin,$$@) $$(INSTARGET_tstDisasm-2) | $$(dir $$@) 146 146 @$(ECHO) "TESTING: $(@F) [--undef-op=all]" 147 147 @$(RM) -f $@ … … 150 150 @$(ECHO) " PASSED: $(@F) [--undef-op=all]" 151 151 152 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_INVALID:.asm=-32.tst)): $$(patsubst %.tst,%.bin,$$@) $$(INSTARGET_tstDisasm-2) | $$( call DIRDEP,$$(@D))152 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_INVALID:.asm=-32.tst)): $$(patsubst %.tst,%.bin,$$@) $$(INSTARGET_tstDisasm-2) | $$(dir $$@) 153 153 @$(ECHO) "TESTING: $(@F) [--undef-op=all]" 154 154 @$(RM) -f $@ … … 157 157 @$(ECHO) " PASSED: $(@F) [--undef-op=all]" 158 158 159 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_INVALID:.asm=-64.tst)): $$(patsubst %.tst,%.bin,$$@) $$(INSTARGET_tstDisasm-2) | $$( call DIRDEP,$$(@D))159 $(addprefix $(VBOX_DISAS_TEST_OUT_DIR)/, $(VBOX_DISAS_TESTS_INVALID:.asm=-64.tst)): $$(patsubst %.tst,%.bin,$$@) $$(INSTARGET_tstDisasm-2) | $$(dir $$@) 160 160 @$(ECHO) "TESTING: $(@F) [--undef-op=all]" 161 161 @$(RM) -f $@ -
trunk/src/VBox/HostDrivers/Support/Makefile.kmk
r35380 r35381 211 211 VBoxDrv-inf_BLDDIRS = $(PATH_TARGET)/VBoxDrvCat.dir 212 212 213 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.inf: $(PATH_SUB_CURRENT)/win/VBoxDrv.inf $(MAKEFILE_CURRENT) | $$( call DIRDEP,$$(@D))213 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.inf: $(PATH_SUB_CURRENT)/win/VBoxDrv.inf $(MAKEFILE_CURRENT) | $$(dir $$@) 214 214 $(call MSG_GENERATE,VBoxDrv-inf,$@,$<) 215 215 $(call VBOX_EDIT_INF_FN,$<,$@) … … 220 220 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.cat 221 221 222 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.sys: $$(TARGET_VBoxDrv) | $$( call DIRDEP,$$(@D))222 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.sys: $$(TARGET_VBoxDrv) | $$(dir $$@) 223 223 $(INSTALL) -m 644 $< $(@D) 224 224 -
trunk/src/VBox/HostDrivers/VBoxUSB/win/Makefile.kmk
r31898 r35381 157 157 $(PATH_TARGET)/VBoxUSBMonCat.dir 158 158 159 $(PATH_TARGET)/VBoxUSBCat.dir/VBoxUSB.inf: $(PATH_SUB_CURRENT)/Device/VBoxUSB.inf $(MAKEFILE_CURRENT) | $$( call DIRDEP,$$(@D))159 $(PATH_TARGET)/VBoxUSBCat.dir/VBoxUSB.inf: $(PATH_SUB_CURRENT)/Device/VBoxUSB.inf $(MAKEFILE_CURRENT) | $$(dir $$@) 160 160 $(call MSG_GENERATE,install-infs,$@,$<) 161 161 $(call VBOX_EDIT_INF_FN,$<,$@) 162 162 163 $(PATH_TARGET)/VBoxUSBMonCat.dir/VBoxUSBMon.inf: $(PATH_SUB_CURRENT)/Monitor/VBoxUSBMon.inf $(MAKEFILE_CURRENT) | $$( call DIRDEP,$$(@D))163 $(PATH_TARGET)/VBoxUSBMonCat.dir/VBoxUSBMon.inf: $(PATH_SUB_CURRENT)/Monitor/VBoxUSBMon.inf $(MAKEFILE_CURRENT) | $$(dir $$@) 164 164 $(call MSG_GENERATE,install-infs,$@,$<) 165 165 $(call VBOX_EDIT_INF_FN,$<,$@) 166 166 167 $(PATH_TARGET)/VBoxUSBFltCat.dir/VBoxUSBFlt.inf: $(PATH_SUB_CURRENT)/Filter/VBoxUSBFlt.inf $(MAKEFILE_CURRENT) | $$( call DIRDEP,$$(@D))167 $(PATH_TARGET)/VBoxUSBFltCat.dir/VBoxUSBFlt.inf: $(PATH_SUB_CURRENT)/Filter/VBoxUSBFlt.inf $(MAKEFILE_CURRENT) | $$(dir $$@) 168 168 $(call MSG_GENERATE,install-infs,$@,$<) 169 169 $(call VBOX_EDIT_INF_FN,$<,$@) … … 176 176 $(PATH_TARGET)/VBoxUSBMonCat.dir/VBoxUSBMon.sys 177 177 178 $(PATH_TARGET)/VBoxUSBCat.dir/VBoxUSB.sys: $$(TARGET_VBoxUSB) | $$( call DIRDEP,$$(@D))178 $(PATH_TARGET)/VBoxUSBCat.dir/VBoxUSB.sys: $$(TARGET_VBoxUSB) | $$(dir $$@) 179 179 $(INSTALL) -m 644 $< $(@D) 180 180 … … 185 185 $(call VBOX_MAKE_CAT_FN, $(@D),$@) 186 186 187 $(PATH_TARGET)/VBoxUSBMonCat.dir/VBoxUSBMon.sys: $$(TARGET_VBoxUSBMon) | $$( call DIRDEP,$$(@D))187 $(PATH_TARGET)/VBoxUSBMonCat.dir/VBoxUSBMon.sys: $$(TARGET_VBoxUSBMon) | $$(dir $$@) 188 188 $(INSTALL) -m 644 $< $(@D) 189 189 -
trunk/src/VBox/Main/Makefile.kmk
r35380 r35381 831 831 + $(VBOX_PATH_SDK)/bindings/mscom/include/VirtualBox.h \ 832 832 + $(VBoxCOM_0_OUTDIR)/VirtualBox.tlb \ 833 + $(VBOX_PATH_SDK)/bindings/mscom/lib/VirtualBox.tlb: $(VBOX_IDL_FILE.MSCOM) | $ (call DIRDEP,$(VBoxCOM_0_OUTDIR))833 + $(VBOX_PATH_SDK)/bindings/mscom/lib/VirtualBox.tlb: $(VBOX_IDL_FILE.MSCOM) | $$(dir $$@) 834 834 $(VBOX_MAIN_IDL) $(IDL_DEFS) \ 835 835 /out $(call VBOX_FN_MAKE_WIN_PATH,$(VBoxCOM_0_OUTDIR)) \
Note:
See TracChangeset
for help on using the changeset viewer.