Changeset 21093 in vbox for trunk/src/VBox/HostServices
- Timestamp:
- Jun 30, 2009 6:51:02 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/Makefile.kmk
r21075 r21093 69 69 -framework ApplicationServices -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxSharedClipboard.dylib 70 70 71 ifdef VBOX_WITH_TESTCASES 72 ifndef VBOX_ONLY_ADDITIONS 73 if1of ($(KBUILD_TARGET),freebsd linux netbsd openbsd solaris) 74 ifndef VBOX_ONLY_SDK 71 if defined(VBOX_WITH_TESTCASES) && !defined(VBOX_ONLY_ADDITIONS) && !defined(VBOX_ONLY_SDK) 72 if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris) 73 # 74 # Set this in LocalConfig.kmk if you are working on the X11 clipboard service 75 # to automatically run the unit test at build time. 76 # OTHERS += $(PATH_tstClipboardX11-2)/tstClipboardX11-2.run 77 PROGRAMS += tstClipboardX11-2 78 TESTING += $(PATH_tstClipboardX11-2)/tstClipboardX11-2.run 79 tstClipboardX11-2_TEMPLATE = VBOXR3TSTEXE 80 tstClipboardX11-2_DEFS = VBOX_WITH_HGCM TESTCASE 81 tstClipboardX11-2_SOURCES = x11-clipboard.cpp 82 tstClipboardX11-2_LIBS = $(LIB_RUNTIME) 83 tstClipboardX11-2_CLEANS = $(PATH_tstClipboardX11-2)/tstClipboardX11-2.run 75 84 76 # Set this in LocalConfig.kmk if you are working on the X11 clipboard service 77 # to automatically run the unit test at build time. 78 # OTHERS += $(PATH_tstClipboardX11-2)/tstClipboardX11-2.run 79 80 PROGRAMS += tstClipboardX11-2 81 tstClipboardX11-2_TEMPLATE = VBOXR3TSTEXE 82 tstClipboardX11-2_DEFS = VBOX_WITH_HGCM TESTCASE 83 tstClipboardX11-2_SOURCES = x11-clipboard.cpp 84 tstClipboardX11-2_LIBS = $(LIB_RUNTIME) 85 86 TESTING += $(PATH_tstClipboardX11-2)/tstClipboardX11-2.run 87 $$(PATH_tstClipboardX11-2)/tstClipboardX11-2.run: \ 88 $$(INSTARGET_tstClipboardX11-2) 85 $$(PATH_tstClipboardX11-2)/tstClipboardX11-2.run: $$(INSTARGET_tstClipboardX11-2) 89 86 export VBOX_LOG_DEST=nofile; $(INSTARGET_tstClipboardX11-2) quiet 90 87 $(QUIET)$(APPEND) -t "$@" "done" 91 92 endif # ! VBOX_WITH_SDK 93 endif # 1of ($(KBUILD_TARGET),freebsd linux netbsd openbsd solaris) 94 endif # ! VBOX_ONLY_ADDITIONS 95 endif # VBOX_WITH_TESTCASES 88 endif # 1of ($(KBUILD_TARGET),freebsd linux netbsd openbsd solaris) 89 endif 96 90 97 91 include $(KBUILD_PATH)/subfooter.kmk
Note:
See TracChangeset
for help on using the changeset viewer.