Changeset 38216 in vbox for trunk/src/VBox/Additions/linux
- Timestamp:
- Jul 28, 2011 11:15:30 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/drm/Makefile.kmk
r38194 r38216 23 23 # 24 24 INSTALLS += vboxvideo_drm-mod 25 include $(PATH_SUB_CURRENT)/files_vboxvideo_drm 25 if !defined(VBOX_WITH_GUEST_KMS_DRIVER) 26 include $(PATH_SUB_CURRENT)/files_vboxvideo_drm 27 else 28 include $(PATH_SUB_CURRENT)/files_vboxvideo_drv 29 endif 26 30 vboxvideo_drm-mod_INST = $(INST_ADDITIONS)src/vboxvideo/ 27 31 vboxvideo_drm-mod_SOURCES = \ … … 75 79 $(if $(shell if grep -q '"2.6.18.*el5.*"' $(inc)/linux/utsrelease.h;\ 76 80 then echo yes; fi),KERNEL_FC6,),)) 77 vboxvideo_drm_SOURCES = vboxvideo_drm.c 81 if !defined(VBOX_WITH_GUEST_KMS_DRIVER) 82 vboxvideo_drm_SOURCES = vboxvideo_drm.c 83 else 84 vboxvideo_drm_SOURCES = \ 85 ../../common/VBoxVideo/Modesetting.cpp \ 86 vboxvideo_device.c \ 87 vboxvideo_display.c \ 88 vboxvideo_drv.c \ 89 vboxvideo_kms.c 90 endif 78 91 79 92 endif
Note:
See TracChangeset
for help on using the changeset viewer.