diff options
author | Adam Jackson <ajax@freedesktop.org> | 2004-12-24 03:04:14 +0000 |
---|---|---|
committer | Adam Jackson <ajax@freedesktop.org> | 2004-12-24 03:04:14 +0000 |
commit | 46a35b2284211e2c068c4c37f8bd3aced240e47a (patch) | |
tree | 45a723fcfb6a7557ff61a0adde675d8c82c79f16 /src/mesa/drivers/dri/trident/Makefile | |
parent | 1c86c7ad9c38b5ef1baa19677b78076889b60e7f (diff) |
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.
Diffstat (limited to 'src/mesa/drivers/dri/trident/Makefile')
-rw-r--r-- | src/mesa/drivers/dri/trident/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
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: |