Browse Source

removed GLUT reference

tags/mesa_4_1
Brian Paul 24 years ago
parent
commit
e79de014c5
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      progs/xdemos/Makefile.X11

+ 5
- 5
progs/xdemos/Makefile.X11 View File

@@ -1,7 +1,7 @@
# $Id: Makefile.X11,v 1.11 2001/03/23 22:48:35 brianp Exp $
# $Id: Makefile.X11,v 1.12 2002/01/30 21:54:37 brianp Exp $

# Mesa 3-D graphics library
# Version: 3.5
# Version: 4.1
# Copyright (C) 1995-2001 Brian Paul

# Makefile for non-GLUT (X11, SVGA, etc) demo programs
@@ -12,9 +12,9 @@
INCDIR = ../include
LIBDIR = ../lib

GL_LIBS = -L$(LIBDIR) -lglut -lGLU -lGL $(APP_LIB_DEPS)
GL_LIBS = -L$(LIBDIR) -lGLU -lGL $(APP_LIB_DEPS)

LIB_DEP = $(LIBDIR)/$(GL_LIB) $(LIBDIR)/$(GLU_LIB) $(LIBDIR)/$(GLUT_LIB)
LIB_DEP = $(LIBDIR)/$(GL_LIB) $(LIBDIR)/$(GLU_LIB)

PROGS = glthreads \
glxdemo \
@@ -43,7 +43,7 @@ PROGS = glthreads \
##### TARGETS #####

default:
@echo "Specify a target configuration"
@echo "Specify a target configuration (i.e. make -f Makefile.X11 linux)"

clean:
-rm *.o *~

Loading…
Cancel
Save