diff options
author | Felix Kuehling <[email protected]> | 2004-08-22 20:31:40 +0000 |
---|---|---|
committer | Felix Kuehling <[email protected]> | 2004-08-22 20:31:40 +0000 |
commit | c2530b573076fe0b257710a456a2b8cd714c0d0a (patch) | |
tree | 57752b905b3d764c6eb36d33364571338b1222b7 /src/mesa/drivers/dri/savage/Makefile | |
parent | b1e178c69bb7ce22a1d890bb4c5f84da71dde58d (diff) |
Converted the Savage driver to the new DRI interface and enabled compilation
in the Mesa tree.
Diffstat (limited to 'src/mesa/drivers/dri/savage/Makefile')
-rw-r--r-- | src/mesa/drivers/dri/savage/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/savage/Makefile b/src/mesa/drivers/dri/savage/Makefile new file mode 100644 index 00000000000..d662cb06d8d --- /dev/null +++ b/src/mesa/drivers/dri/savage/Makefile @@ -0,0 +1,40 @@ +# src/mesa/drivers/dri/r128/Makefile + +TOP = ../../../../.. +include $(TOP)/configs/current + +LIBNAME = savage_dri.so + +# Doesn't exist yet. +#MINIGLX_SOURCES = server/savage_dri.c + +COMMON_SOURCES = \ + ../../common/driverfuncs.c \ + ../common/mm.c \ + ../common/utils.c \ + ../common/texmem.c \ + ../common/vblank.c \ + ../common/xmlconfig.c \ + ../common/dri_util.c \ + ../common/glcontextmodes.c + +DRIVER_SOURCES = \ + savage_xmesa.c \ + savagedd.c \ + savagestate.c \ + savagetex.c \ + savagetris.c \ + savageioctl.c \ + savagespan.c \ + savagedma.c + +C_SOURCES = \ + $(COMMON_SOURCES) \ + $(DRIVER_SOURCES) + +ASM_SOURCES = + + +include ../Makefile.template + +symlinks: |