Changeset 6004 in vbox
- Timestamp:
- Dec 7, 2007 8:36:47 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.kmk
r5999 r6004 24 24 SUBDIRS += src 25 25 26 ifndef VBOX_ONLY_ADDITIONS 26 27 # 27 28 # Install external binaries (mostly redistributable parts of tools we use). … … 175 176 endif 176 177 178 endif # !VBOX_ONLY_ADDITIONS 177 179 178 180 -
trunk/src/Makefile.kmk
r5999 r6004 28 28 endif 29 29 30 SUBDIRS += bldprogs libs VBox recompiler 31 ifneq ($(wildcard apps),) 32 SUBDIRS += apps 33 endif 34 ifdef VBOX_WITH_TESTSUITE 35 SUBDIRS += tests 36 endif 37 ifdef VBOX_WITH_TESTCASES 38 SUBDIRS += testcase 39 endif 30 SUBDIRS += bldprogs libs VBox 31 ifndef VBOX_ONLY_ADDITIONS 32 SUBDIRS += recompiler 33 ifneq ($(wildcard apps),) 34 SUBDIRS += apps 35 endif 36 ifdef VBOX_WITH_TESTSUITE 37 SUBDIRS += tests 38 endif 39 ifdef VBOX_WITH_TESTCASES 40 SUBDIRS += testcase 41 endif 42 endif # !VBOX_ONLY_ADDITIONS 40 43 41 44 include $(PATH_KBUILD)/footer.kmk -
trunk/src/VBox/Makefile.kmk
r5999 r6004 1 1 # $Id$ 2 ## @file 2 ## @file 3 3 # Top-level makefile for src/VBox. 4 4 # … … 19 19 include $(PATH_KBUILD)/header.kmk 20 20 21 SUBDIRS_BLDPROGS = Devices 21 ifdef VBOX_ONLY_ADDITIONS 22 SUBDIRS = \ 23 Runtime \ 24 Additions 22 25 23 SUBDIRS = \ 26 else # !VBOX_ONLY_ADDITIONS 27 SUBDIRS_BLDPROGS = Devices 28 29 SUBDIRS = \ 24 30 Runtime \ 25 31 HostDrivers \ … … 27 33 Devices \ 28 34 Disassembler \ 29 30 Debugger 35 HostServices \ 36 Debugger 31 37 32 ifdef VBOX_WITH_MAIN33 SUBDIRS += Main34 endif38 ifdef VBOX_WITH_MAIN 39 SUBDIRS += Main 40 endif 35 41 36 ifdef VBOX_WITH_VRDP37 SUBDIRS += RDP38 endif42 ifdef VBOX_WITH_VRDP 43 SUBDIRS += RDP 44 endif 39 45 40 ifneq ($(VBOX_WITH_WIN32_ADDITIONS)$(VBOX_WITH_LINUX_ADDITIONS),)41 SUBDIRS += Additions42 endif46 ifneq ($(VBOX_WITH_WIN32_ADDITIONS)$(VBOX_WITH_LINUX_ADDITIONS),) 47 SUBDIRS += Additions 48 endif 43 49 44 SUBDIRS += Frontends50 SUBDIRS += Frontends 45 51 46 # This must be the last one. 47 ifdef VBOX_WITH_INSTALLER 48 SUBDIRS += Installer 49 endif 52 # This must be the last one. 53 ifdef VBOX_WITH_INSTALLER 54 SUBDIRS += Installer 55 endif 56 endif # !VBOX_ONLY_ADDITIONS 50 57 51 58 include $(PATH_KBUILD)/footer.kmk
Note:
See TracChangeset
for help on using the changeset viewer.