diff options
author | Adam Jackson <ajax@freedesktop.org> | 2004-12-27 20:31:56 +0000 |
---|---|---|
committer | Adam Jackson <ajax@freedesktop.org> | 2004-12-27 20:31:56 +0000 |
commit | c3eaa17b37ef83d43a4de211c1b4f616b3bc0a3d (patch) | |
tree | b1cee126821cce46d6d1b86dbe8a5b9e4c6e27ce /src/mesa/drivers/dri/s3v/Makefile | |
parent | 99edafd4e87fdfb53a46d10d497250a9ba1fa91b (diff) |
Get s3v building with a minimum of warnings.
Diffstat (limited to 'src/mesa/drivers/dri/s3v/Makefile')
-rw-r--r-- | src/mesa/drivers/dri/s3v/Makefile | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/s3v/Makefile b/src/mesa/drivers/dri/s3v/Makefile new file mode 100644 index 0000000000..2167ac8683 --- /dev/null +++ b/src/mesa/drivers/dri/s3v/Makefile @@ -0,0 +1,46 @@ +# src/mesa/drivers/dri/s3v/Makefile + +TOP = ../../../../.. +include $(TOP)/configs/current + +LIBNAME = s3v_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 = \ + s3v_context.c \ + s3v_dd.c \ + s3v_inithw.c \ + s3v_lock.c \ + s3v_render.c \ + s3v_screen.c \ + s3v_span.c \ + s3v_state.c \ + s3v_tex.c \ + s3v_texmem.c \ + s3v_texstate.c \ + s3v_tris.c \ + s3v_vb.c \ + s3v_xmesa.c + +C_SOURCES = \ + $(COMMON_SOURCES) \ + $(DRIVER_SOURCES) + +ASM_SOURCES = + + +include ../Makefile.template + +symlinks: |