Changeset 6759 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Feb 2, 2008 9:44:51 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 27841
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/Makefile.kmk
r6597 r6759 1 1 # $Id$ 2 2 ## @file 3 # Makefile for VBoxManage (the cli frontend).3 # Sub-Makefile for VBoxManage (the cli frontend). 4 4 # 5 5 … … 17 17 18 18 19 DEPTH = ../../../.. 20 include $(PATH_KBUILD)/header.kmk 19 DEPTH ?= ../../../.. 20 SUB_DEPTH = .. 21 include $(PATH_KBUILD)/subheader.kmk 21 22 22 PROGRAMS = VBoxManage 23 24 VBoxManage_TEMPLATE = VBOXMAINCLIENTEXE 25 VBoxManage_SOURCES = \ 23 PROGRAMS += VBoxManage 24 VBoxManage_TEMPLATE = VBOXMAINCLIENTEXE 25 VBoxManage_DEFS += $(if $(VBOX_WITH_VRDP),VBOX_VRDP,) \ 26 $(if $(VBOX_WITH_ALSA),VBOX_WITH_ALSA,) \ 27 $(if $(VBOX_WITH_PULSE),VBOX_WITH_PULSE,) 28 VBoxManage_SOURCES = \ 26 29 VBoxManage.cpp \ 27 30 VBoxInternalManage.cpp \ 28 31 VBoxManageSVN.cpp 29 32 ifndef VBOX_OSE 30 VBoxManage_SOURCES += \33 VBoxManage_SOURCES += \ 31 34 VBoxInternalManageVmdk.cpp 32 35 endif 33 VBoxManage_DEFS += $(if $(VBOX_WITH_VRDP),VBOX_VRDP,) \ 34 $(if $(VBOX_WITH_ALSA),VBOX_WITH_ALSA,) \ 35 $(if $(VBOX_WITH_PULSE),VBOX_WITH_PULSE,) 36 VBoxManage_LIBS += $(LIB_DDU) 36 VBoxManage_LIBS += $(LIB_DDU) 37 37 38 38 # VBoxManageSVN.cpp uses VBOX_SVN_REV. … … 40 40 VBoxManageSVN.cpp_DEPS = $(VBOX_SVN_REV_KMK) 41 41 42 include $(PATH_KBUILD)/subfooter.kmk 42 43 43 include $(PATH_KBUILD)/footer.kmk
Note:
See TracChangeset
for help on using the changeset viewer.