Changeset 10127 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jul 3, 2008 2:51:57 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 32645
- Location:
- trunk/src/VBox/Additions/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/Makefile.kmk
r10099 r10127 20 20 # 21 21 22 DEPTH ?= ../../../.. 22 ifdef VBOX_KBUILD_HACKING 23 SUB_DEPTH = ../../../.. 24 else 25 DEPTH ?= ../../../.. 23 26 SUB_DEPTH = .. 27 endif 24 28 include $(KBUILD_PATH)/subheader.kmk 25 29 26 30 # Include sub-makefile. 27 31 include $(PATH_SUB_CURRENT)/VBoxGuestLib/Makefile.kmk 32 if1of ($(KBUILD_TARGET), freebsd os2 solaris) 28 33 include $(PATH_SUB_CURRENT)/VBoxControl/Makefile.kmk 29 if1of ($(KBUILD_TARGET), freebsd os2 solaris)30 34 include $(PATH_SUB_CURRENT)/VBoxGuest/Makefile.kmk 31 35 include $(PATH_SUB_CURRENT)/VBoxService/Makefile.kmk -
trunk/src/VBox/Additions/common/VBoxControl/Makefile.kmk
r10099 r10127 1 1 # $Id$ 2 2 ## @file 3 # Makefile for the Cross Platform Guest Addition Services.3 # Sub-Makefile for the Guest Additions Command Line Management Interface. 4 4 # 5 5 6 6 # 7 # Copyright (C) 200 7Sun Microsystems, Inc.7 # Copyright (C) 2008 Sun Microsystems, Inc. 8 8 # 9 9 # This file is part of VirtualBox Open Source Edition (OSE), as … … 20 20 # 21 21 22 DEPTH ?= ../../../../.. 22 ifdef VBOX_KBUILD_HACKING 23 SUB_DEPTH = ../../../../.. 24 else 23 25 SUB_DEPTH = ../.. 26 DEPTH ?= ../../../../.. 27 endif 24 28 include $(KBUILD_PATH)/subheader.kmk 25 26 ifneq ($(KBUILD_TARGET),win)27 PROGRAMS += VBoxControl28 endif29 29 30 30 # 31 31 # VBoxControl 32 32 # 33 VBoxControl_TEMPLATE = VBOXGUESTR3EXE 34 VBoxControl_DEFS += \ 35 $(if $(VBOX_WITH_INFO_SVC),VBOX_HGCM VBOX_WITH_INFO_SVC,) 36 VBoxControl_SOURCES = \ 33 PROGRAMS += VBoxControl 34 VBoxControl_TEMPLATE = VBOXGUESTR3EXE 35 ifdef VBOX_WITH_INFO_SVC 36 VBoxControl_DEFS += VBOX_HGCM VBOX_WITH_INFO_SVC 37 endif 38 VBoxControl_SOURCES = \ 37 39 VBoxControl.cpp \ 38 40 VBoxControlSVN.cpp 39 VBoxControl_LIBS 41 VBoxControl_LIBS = \ 40 42 $(VBOX_LIB_IPRT_GUEST_R3) \ 41 43 $(VBOX_LIB_VBGL_R3) … … 46 48 47 49 include $(KBUILD_PATH)/subfooter.kmk 50
Note:
See TracChangeset
for help on using the changeset viewer.