diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2005-11-29 22:37:19 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2005-11-29 22:37:19 +0000 |
commit | 126482a12f7053a96f3d667f696d057865376ef5 (patch) | |
tree | 8dfeea03d4ee6bb68564003718d210036b3ec143 /src/mesa/drivers/dri/dri_client/Makefile | |
parent | 9790e641ef24859833c01a1fa7004a1c2b73ddd1 (diff) |
use the files from the drm tree/package
Diffstat (limited to 'src/mesa/drivers/dri/dri_client/Makefile')
-rw-r--r-- | src/mesa/drivers/dri/dri_client/Makefile | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/src/mesa/drivers/dri/dri_client/Makefile b/src/mesa/drivers/dri/dri_client/Makefile deleted file mode 100644 index 9ab60cdaf8..0000000000 --- a/src/mesa/drivers/dri/dri_client/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# src/mesa/drivers/dri/gamma/Makefile - -TOP = ../../../../.. -include $(TOP)/configs/current - -# Get rid of this: -# -DEFINES += -DGLX_DIRECT_RENDERING - -C_SOURCES = \ - xf86drm.c \ - xf86drmHash.c \ - xf86drmRandom.c \ - xf86drmSL.c \ - - - -OBJECTS = $(C_SOURCES:.c=.o) - -INCLUDES = \ - -I$(TOP)/include \ - -I$(DRM_SOURCE_PATH)/shared-core \ - -I$(TOP)/include/GL/internal \ - -I$(TOP)/src/mesa \ - -I$(TOP)/src/mesa/main \ - -I$(TOP)/src/mesa/glapi \ - -Iimports - - -##### RULES ##### - -.c.o: - $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@ - - -##### TARGETS ##### - -default: depend dri.a - - -# Run 'make dep' to update the dependencies if you change -# what's included by any source file. -depend: $(C_SOURCES) $(ASM_SOURCES) - touch depend - $(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) \ - $(C_SOURCES) $(ASM_SOURCES) - - -dri.a: $(OBJECTS) - rm -f $@ - ar rcv $@ $(OBJECTS) - ranlib $@ - -# Remove .o and backup files -clean: - -rm -f *.o */*.o *~ *.so *.a depend depend.bak - -install: - -include depend |