Changeset 2639 in vbox for trunk/src/VBox/Additions/linux/module
- Timestamp:
- May 14, 2007 8:33:35 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 21164
- Location:
- trunk/src/VBox/Additions/linux/module
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/module/Makefile.kmk
r2478 r2639 28 28 endif 29 29 30 # 31 # Populate FILES_VBOXADD_NOBIN and FILES_VBOXADD_BIN 32 # 33 include files_vboxadd 34 30 35 vboxmod-bin_INST = bin/additions/src/vboxadd/ 31 36 vboxmod-bin_MODE = a+r,u+w 32 vboxmod-bin_SOURCES = \ 33 $(PATH_ROOT)/include/iprt/alloc.h=>include/iprt/alloc.h \ 34 $(PATH_ROOT)/include/iprt/asm.h=>include/iprt/asm.h \ 35 $(PATH_ROOT)/include/iprt/assert.h=>include/iprt/assert.h \ 36 $(PATH_ROOT)/include/iprt/cdefs.h=>include/iprt/cdefs.h \ 37 $(PATH_ROOT)/include/iprt/err.h=>include/iprt/err.h \ 38 $(PATH_ROOT)/include/iprt/log.h=>include/iprt/log.h \ 39 $(PATH_ROOT)/include/iprt/mem.h=>include/iprt/mem.h \ 40 $(PATH_ROOT)/include/iprt/param.h=>include/iprt/param.h \ 41 $(PATH_ROOT)/include/iprt/semaphore.h=>include/iprt/semaphore.h \ 42 $(PATH_ROOT)/include/iprt/stdarg.h=>include/iprt/stdarg.h \ 43 $(PATH_ROOT)/include/iprt/stdint.h=>include/iprt/stdint.h \ 44 $(PATH_ROOT)/include/iprt/string.h=>include/iprt/string.h \ 45 $(PATH_ROOT)/include/iprt/types.h=>include/iprt/types.h \ 46 $(PATH_ROOT)/include/VBox/cdefs.h=>include/VBox/cdefs.h \ 47 $(PATH_ROOT)/include/VBox/err.h=>include/VBox/err.h \ 48 $(PATH_ROOT)/include/VBox/log.h=>include/VBox/log.h \ 49 $(PATH_ROOT)/include/VBox/types.h=>include/VBox/types.h \ 50 $(PATH_ROOT)/include/VBox/ostypes.h=>include/VBox/ostypes.h \ 51 $(PATH_ROOT)/include/VBox/VBoxGuest.h=>include/VBox/VBoxGuest.h \ 52 $(PATH_ROOT)/include/VBox/VBoxGuestLib.h=>include/VBox/VBoxGuestLib.h \ 53 $(PATH_ROOT)/src/VBox/Additions/common/VBoxGuestLib/GenericRequest.cpp=>GenericRequest.c \ 54 $(PATH_ROOT)/src/VBox/Additions/common/VBoxGuestLib/HGCMInternal.cpp=>HGCMInternal.c \ 55 $(PATH_ROOT)/src/VBox/Additions/common/VBoxGuestLib/Init.cpp=>Init.c \ 56 $(PATH_ROOT)/src/VBox/Additions/common/VBoxGuestLib/PhysHeap.cpp=>PhysHeap.c \ 57 $(PATH_ROOT)/src/VBox/Additions/common/VBoxGuestLib/SysHlp.h=>SysHlp.h \ 58 $(PATH_ROOT)/src/VBox/Additions/common/VBoxGuestLib/VBGLInternal.h=>VBGLInternal.h \ 59 $(PATH_ROOT)/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestLog.h=>VBoxGuestLog.h \ 60 $(PATH_ROOT)/src/VBox/Additions/common/VBoxGuestLib/VMMDev.cpp=>VMMDev.c \ 61 $(PATH_ROOT)/src/VBox/Runtime/include/internal/magics.h=>include/internal/magics.h \ 62 $(PATH_ROOT)/src/VBox/Runtime/r0drv/alloc-r0drv.cpp=>r0drv/alloc-r0drv.c \ 63 $(PATH_ROOT)/src/VBox/Runtime/r0drv/alloc-r0drv.h=>r0drv/alloc-r0drv.h \ 64 $(PATH_ROOT)/src/VBox/Runtime/r0drv/linux/alloc-r0drv-linux.c=>r0drv/linux/alloc-r0drv-linux.c \ 65 $(PATH_ROOT)/src/VBox/Runtime/r0drv/linux/semaphore-r0drv-linux.c=>r0drv/linux/semaphore-r0drv-linux.c \ 66 $(PATH_ROOT)/src/VBox/Runtime/r0drv/linux/string.h=>r0drv/linux/string.h \ 67 $(PATH_ROOT)/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h=>r0drv/linux/the-linux-kernel.h \ 68 $(PATH_OUT)/version-generated.h=>version-generated.h \ 69 vboxmod.c=>vboxmod.c \ 70 cmc.c=>cmc.c \ 71 hgcmcall.c=>hgcmcall.c \ 72 vboxmod.h=>vboxmod.h \ 73 waitcompat.h=>waitcompat.h \ 74 Makefile.module=>Makefile 37 vboxmod-bin_SOURCES = $(subst ",,$(FILES_VBOXADD_NOBIN)) 75 38 76 vboxmod-sh_INST = bin/additions/src/vboxadd/ 77 vboxmod-sh_MODE = a+rx,u+w 78 vboxmod-sh_SOURCES = \ 79 $(PATH_ROOT)/src/VBox/HostDrivers/Support/linux/build_in_tmp=>build_in_tmp 39 vboxmod-sh_INST = bin/additions/src/vboxadd/ 40 vboxmod-sh_MODE = a+rx,u+w 41 vboxmod-sh_SOURCES = $(subst ",,$(FILES_VBOXADD_BIN)) 80 42 81 43 # -
trunk/src/VBox/Additions/linux/module/Makefile.module
r2197 r2639 150 150 clean: 151 151 for f in . linux r0drv r0drv/linux; do rm -f $$f/*.o $$f/.*.cmd $$f/.*.flags; done 152 rm -rf .vbox drv* .tmp_ver* vboxdrv.* Module.symvers Modules.symvers152 rm -rf .vboxadd* .tmp_ver* vboxadd.* Module.symvers Modules.symvers
Note:
See TracChangeset
for help on using the changeset viewer.