diff options
author | Eric Anholt <eric@anholt.net> | 2010-08-20 10:52:14 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-08-20 10:55:42 -0700 |
commit | 284ce20901b0c2cfab1d952cc129b8f3cd068f12 (patch) | |
tree | fb245e2b41adaad79b01d54aa288943466304b21 /src/mesa/drivers/glslcompiler/Makefile | |
parent | a4b10a56145ea253def4cf958410d770d0640bc9 (diff) |
Remove remnants of the old glsl compiler.
Diffstat (limited to 'src/mesa/drivers/glslcompiler/Makefile')
-rw-r--r-- | src/mesa/drivers/glslcompiler/Makefile | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/src/mesa/drivers/glslcompiler/Makefile b/src/mesa/drivers/glslcompiler/Makefile deleted file mode 100644 index 6da9f93f59..0000000000 --- a/src/mesa/drivers/glslcompiler/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# Makefile for stand-alone GL-SL compiler - -TOP = ../../../.. - -include $(TOP)/configs/current - - -PROGRAM = glslcompiler - -OBJECTS = \ - glslcompiler.o \ - ../common/driverfuncs.o \ - ../../libmesa.a \ - $(TOP)/src/mapi/glapi/libglapi.a - -INCLUDES = \ - -I$(TOP)/include \ - -I$(TOP)/include/GL/internal \ - -I$(TOP)/src/mapi \ - -I$(TOP)/src/mesa \ - -I$(TOP)/src/mesa/main \ - -I$(TOP)/src/mesa/glapi \ - -I$(TOP)/src/mesa/math \ - -I$(TOP)/src/mesa/transform \ - -I$(TOP)/src/mesa/shader \ - -I$(TOP)/src/mesa/swrast \ - -I$(TOP)/src/mesa/swrast_setup \ - - -default: $(PROGRAM) - $(INSTALL) $(PROGRAM) $(TOP)/bin - - -glslcompiler: $(OBJECTS) - $(CC) $(OBJECTS) $(GL_LIB_DEPS) -o $@ - - -glslcompiler.o: glslcompiler.c - $(CC) -c $(INCLUDES) $(CFLAGS) glslcompiler.c -o $@ - - -clean: - -rm -f *.o *~ $(PROGRAM) |