From 46a35b2284211e2c068c4c37f8bd3aced240e47a Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Fri, 24 Dec 2004 03:04:14 +0000 Subject: Get trident building and -Werror clean. - Added Makefile - Deleted references to old headers - Added prototypes all over the place - Lots of type updates (drmHandle -> drm_handle_t etc.) - Added __driCreateNewScreen(), deleted __driCreateScreen() - Fixed context creation to match other drivers - Fixed various bitfield names - Bumped driver date Still nowhere close to usable, the DDX isn't DRI-aware and there's no DRM. --- src/mesa/drivers/dri/trident/Makefile | 36 +++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/mesa/drivers/dri/trident/Makefile (limited to 'src/mesa/drivers/dri/trident/Makefile') diff --git a/src/mesa/drivers/dri/trident/Makefile b/src/mesa/drivers/dri/trident/Makefile new file mode 100644 index 0000000000..f895500940 --- /dev/null +++ b/src/mesa/drivers/dri/trident/Makefile @@ -0,0 +1,36 @@ +# src/mesa/drivers/dri/trident/Makefile + +TOP = ../../../../.. +include $(TOP)/configs/current + +LIBNAME = trident_dri.so + +# Not yet +# MINIGLX_SOURCES = server/trident_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 = \ + trident_context.c \ + trident_state.c \ + trident_vb.c \ + trident_dd.c \ + trident_tris.c + +C_SOURCES = \ + $(COMMON_SOURCES) \ + $(DRIVER_SOURCES) + +ASM_SOURCES = + +include ../Makefile.template + +symlinks: -- cgit v1.2.3