- Timestamp:
- Oct 21, 2007 8:58:59 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 25533
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 1 edited
- 6 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r5417 r5419 159 159 common/checksum/crc64.cpp \ 160 160 r3/dir.cpp \ 161 errmsg.cpp \161 common/err/errmsg.cpp \ 162 162 r3/fileio.cpp \ 163 163 r3/fs.cpp \ … … 188 188 r3/stream.cpp \ 189 189 r3/tcp.cpp \ 190 RTErrConvertFromErrno.cpp \190 common/err/RTErrConvertFromErrno.cpp \ 191 191 common/misc/semspingpong.cpp \ 192 192 common/string/straprintf.cpp \ … … 773 773 r0drv/linux/spinlock-r0drv-linux.c \ 774 774 r0drv/linux/thread-r0drv-linux.c \ 775 RTErrConvertToErrno.cpp775 common/err/RTErrConvertToErrno.cpp 776 776 ## @todo thread2-r0drv-linux.c, timer-r0drv-linux.c and assert-r0drv-linux.c 777 777 … … 805 805 generic/RTAssertDoBreakpoint-generic.cpp \ 806 806 generic/RTTimerCreate-generic.cpp \ 807 RTErrConvertFromErrno.cpp \807 common/err/RTErrConvertFromErrno.cpp \ 808 808 common/string/memchr.asm \ 809 809 r0drv/memobj-r0drv.cpp \ … … 864 864 generic/RTAssertDoBreakpoint-generic.cpp \ 865 865 generic/RTLogWriteDebugger-generic.cpp \ 866 RTErrConvertFromErrno.cpp \867 RTErrConvertToErrno.cpp \866 common/err/RTErrConvertFromErrno.cpp \ 867 common/err/RTErrConvertToErrno.cpp \ 868 868 common/string/memchr.asm \ 869 869 r0drv/memobj-r0drv.cpp \ … … 888 888 generic/RTLogWriteDebugger-generic.cpp \ 889 889 generic/RTTimerCreate-generic.cpp \ 890 RTErrConvertFromErrno.cpp \890 common/err/RTErrConvertFromErrno.cpp \ 891 891 common/string/memchr.asm \ 892 892 r0drv/memobj-r0drv.cpp \ … … 1049 1049 # errmsg.cpp depends on a generated header. 1050 1050 # 1051 errmsg.cpp_DEPS = $(PATH_TARGET)/errmsgdata.h1052 errmsg.cpp_INCS = $(PATH_TARGET)1051 common/err/errmsg.cpp_DEPS = $(PATH_TARGET)/errmsgdata.h 1052 common/err/errmsg.cpp_INCS = $(PATH_TARGET) 1053 1053 1054 1054 win32/errmsgwin.cpp_DEPS = $(PATH_TARGET)/errmsgcomdata.h 1055 1055 win32/errmsgwin.cpp_INCS = $(PATH_TARGET) 1056 1057 linux/errmsglinux.cpp_DEPS = $(PATH_TARGET)/errmsgxpcomdata.h1058 linux/errmsglinux.cpp_INCS = $(PATH_TARGET)1059 1056 1060 1057 … … 1074 1071 # Generate the status code data. 1075 1072 # 1076 $(PATH_TARGET)/errmsgdata.h: errmsg.sed $(DEPTH)/include/iprt/err.h $(DEPTH)/include/VBox/err.h1073 $(PATH_TARGET)/errmsgdata.h: common/err/errmsg.sed $(DEPTH)/include/iprt/err.h $(DEPTH)/include/VBox/err.h 1077 1074 $(call MSG_GENERATE,,$@,$(filter %.h,$^)) 1078 1075 $(QUIET)$(MKDIR) -p $(PATH_TARGET) 1079 1076 $(QUIET)$(SED) -f $< $(filter %.h,$^) > $@ 1080 1077 ## @todo r=bird: rename this to indicate that it's not only COM errors, but all win32/64 errors. 1081 $(PATH_TARGET)/errmsgcomdata.h: errmsgcom.sed $(PATH_SDK_WINPSDK_INC)/WinError.h1078 $(PATH_TARGET)/errmsgcomdata.h: common/err/errmsgcom.sed $(PATH_SDK_WINPSDK_INC)/WinError.h 1082 1079 $(call MSG_GENERATE,,$@,$(filter %.h,$^)) 1083 1080 $(QUIET)$(MKDIR) -p $(PATH_TARGET) 1084 1081 $(QUIET)$(SED) -f $< $(filter %.h,$^) > $@ 1085 $(PATH_TARGET)/errmsgxpcomdata.h: errmsgxpcom.sed $(DEPTH)/src/libs/xpcom18a4/xpcom/base/nsError.h1082 $(PATH_TARGET)/errmsgxpcomdata.h: common/err/errmsgxpcom.sed $(DEPTH)/src/libs/xpcom18a4/xpcom/base/nsError.h 1086 1083 $(call MSG_GENERATE,,$@,$(filter %.h,$^)) 1087 1084 $(QUIET)$(MKDIR) -p $(PATH_TARGET)
Note:
See TracChangeset
for help on using the changeset viewer.