diff options
author | Rik Faith <faith@alephnull.com> | 2000-07-21 15:48:24 +0000 |
---|---|---|
committer | Rik Faith <faith@alephnull.com> | 2000-07-21 15:48:24 +0000 |
commit | e38b34e54a79919588f23294ddb326309c9cb005 (patch) | |
tree | 1489b45b7a6b8afe0dd92ee02fde840281d1f548 | |
parent | 81da79d1ed038ff8968abcf1cde3362035603861 (diff) |
Fixes for building in the kernel tree
-rw-r--r-- | linux-core/Makefile.kernel | 6 | ||||
-rw-r--r-- | linux/Makefile.kernel | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/linux-core/Makefile.kernel b/linux-core/Makefile.kernel index 2937898f..b19f77c6 100644 --- a/linux-core/Makefile.kernel +++ b/linux-core/Makefile.kernel @@ -16,7 +16,11 @@ L_OBJS := init.o memory.o proc.o auth.o context.o drawable.o bufs.o \ lists.o lock.o ioctl.o fops.o vm.o dma.o ctxbitmap.o \ agpsupport.o -M_OBJS := +M_OBJS := + +ifdef CONFIG_DRM_AGP + L_OBJS += agpsupport.o +endif ifeq ($(CONFIG_DRM_GAMMA),y) OX_OBJS += gamma_drv.o diff --git a/linux/Makefile.kernel b/linux/Makefile.kernel index 2937898f..b19f77c6 100644 --- a/linux/Makefile.kernel +++ b/linux/Makefile.kernel @@ -16,7 +16,11 @@ L_OBJS := init.o memory.o proc.o auth.o context.o drawable.o bufs.o \ lists.o lock.o ioctl.o fops.o vm.o dma.o ctxbitmap.o \ agpsupport.o -M_OBJS := +M_OBJS := + +ifdef CONFIG_DRM_AGP + L_OBJS += agpsupport.o +endif ifeq ($(CONFIG_DRM_GAMMA),y) OX_OBJS += gamma_drv.o |