Changeset 8730 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- May 9, 2008 1:40:44 AM (17 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r8728 r8730 1 1 # $Id$ 2 2 ## @file 3 # Makefile for the IPRT (IPRT).3 # Sub-Makefile for the IPRT (IPRT). 4 4 # 5 5 … … 30 30 31 31 32 DEPTH = ../../.. 33 include $(PATH_KBUILD)/header.kmk 32 DEPTH ?= ../../.. 33 SUB_DEPTH = . 34 include $(PATH_KBUILD)/subheader.kmk 35 36 include testcase/Makefile.kmk 34 37 35 38 ifdef VBOX_ONLY_ADDITIONS … … 55 58 # Normal build. 56 59 # 60 include testcase/Makefile.kmk 61 57 62 BLDPROGS = uniread 58 63 LIBRARIES = RuntimeR3 RuntimeR0 RuntimeGC RuntimeEFCPP RuntimeR3NoCRTGCC … … 84 89 $(PATH_TARGET)/docs.iprt 85 90 86 SUBDIRS_AFTER = testcase 87 endif 88 89 90 # global (for now at least) 91 INCS += include 91 endif 92 92 93 93 94 # … … 96 97 uniread_TEMPLATE = VBOXBLDPROG 97 98 uniread_SOURCES = common/string/uniread.cpp 99 uniread_INCS = include 98 100 99 101 # … … 148 150 endif 149 151 RuntimeR3_INCS = \ 152 include \ 150 153 $(PATH_ROOT)/src/libs/liblzf-1.51 151 154 ifdef IPRT_WITH_KSTUFF … … 495 498 RuntimeR3L4_DEFS += __PIC__ 496 499 endif 497 RuntimeR3L4_INCS = $(L4_INCDIR) 500 RuntimeR3L4_INCS = \ 501 include \ 502 $(L4_INCDIR) 498 503 499 504 RuntimeR3L4_SOURCES = \ … … 699 704 RuntimeR3NoCRTGCC_TEMPLATE = VBOXNOCRTGCC 700 705 RuntimeR3NoCRTGCC_LIBSUFF = $(VBOX_SUFF_LIB) 706 RuntimeR3NoCRTGCC_INCS = include 701 707 RuntimeR3NoCRTGCC_SOURCES = \ 702 708 common/misc/sanity-cpp.cpp \ … … 776 782 RuntimeR0_TEMPLATE = VBOXR0 777 783 RuntimeR0_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS 784 RuntimeR0_INCS = include 778 785 RuntimeR0_SOURCES = \ 779 786 common/log/logcom.cpp \ … … 868 875 RuntimeR0Drv_TEMPLATE = VBOXR0DRV 869 876 RuntimeR0Drv_SDKS.win = W2K3DDK WINPSDKINCS 870 RuntimeR0Drv_INCS := $(PATH_SUB_CURRENT) 877 RuntimeR0Drv_INCS := $(PATH_SUB_CURRENT) include 871 878 RuntimeR0Drv_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS 872 879 RuntimeR0Drv_DEFS.win = IN_SUP_R0 … … 1118 1125 RuntimeGuestR0_DEFS := $(RuntimeR0Drv_DEFS) 1119 1126 RuntimeGuestR0_DEFS.$(BUILD_TARGET) := $(RuntimeR0Drv_DEFS.$(BUILD_TARGET)) 1120 RuntimeGuestR0_INCS := $(PATH_SUB_CURRENT) 1127 RuntimeGuestR0_INCS := $(PATH_SUB_CURRENT) include 1121 1128 RuntimeGuestR0_INCS.$(BUILD_TARGET) := $(RuntimeR0Drv_INCS.$(BUILD_TARGET)) 1122 1129 RuntimeGuestR0_SOURCES := $(filter-out generic/RTLogWriteUser-generic.cpp, $(RuntimeR0Drv_SOURCES)) … … 1148 1155 RuntimeW32GuestR0_TEMPLATE = VBOXW32GUESTR0LIB 1149 1156 RuntimeW32GuestR0_SDKS = W2K3DDKX86 WINPSDKINCS 1150 RuntimeW32GuestR0_INCS := $(PATH_SUB_CURRENT) 1157 RuntimeW32GuestR0_INCS := $(PATH_SUB_CURRENT) include 1151 1158 RuntimeW32GuestR0_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS IN_SUP_R0 1152 1159 RuntimeW32GuestR0_DEFS.$(BUILD_TARGET) = … … 1179 1186 RuntimeGC_TEMPLATE = VBOXGC 1180 1187 RuntimeGC_DEFS = IN_RT_GC RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS 1188 RuntimeGC_INCS = include 1181 1189 RuntimeGC_SOURCES = \ 1182 1190 common/log/log.cpp \ … … 1275 1283 1276 1284 1277 # Generate the rules 1278 include $(PATH_KBUILD)/footer.kmk 1285 # 1286 # Generate the rules (we're the to sub-makefile). 1287 # 1288 include $(PATH_KBUILD)/subfooter.kmk 1279 1289 1280 1290 -
trunk/src/VBox/Runtime/testcase/Makefile.kmk
r8727 r8730 1 1 # $Id$ 2 2 ## @file 3 # Makefile for the IPRT testcases.3 # Sub-Makefile for the IPRT testcases. 4 4 # 5 5 … … 29 29 # 30 30 31 DEPTH = ../../../.. 32 include $(PATH_KBUILD)/header.kmk 31 DEPTH ?= ../../../.. 32 SUB_DEPTH = .. 33 include $(PATH_KBUILD)/subheader.kmk 33 34 34 35 ifdef VBOX_WITH_TESTCASES … … 135 136 # Note: tstErrUnique.cpp depends on a header generated by the makefile above us. 136 137 tstErrUnique_SOURCES = tstErrUnique.cpp 137 tstErrUnique_INCS = $(PATH_TARGET)/ ..138 tstErrUnique.cpp_DEPS = $(PATH_TARGET)/ ../errmsgdata.h138 tstErrUnique_INCS = $(PATH_TARGET)/ 139 tstErrUnique.cpp_DEPS = $(PATH_TARGET)/errmsgdata.h 139 140 140 141 tstFile_SOURCES = tstFile.cpp … … 290 291 endif # VBOX_WITH_TESTCASES 291 292 292 include $(PATH_KBUILD)/ footer.kmk293 293 include $(PATH_KBUILD)/subfooter.kmk 294
Note:
See TracChangeset
for help on using the changeset viewer.