Browse Source

progs/glsl: Include local headers before installed headers during compilation.

Fixes compilation errors on platforms with insufficient older installed
GL headers.
tags/mesa_7_7_rc1
Vinson Lee 16 years ago
parent
commit
d17af7d1e1
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      progs/glsl/Makefile

+ 1
- 1
progs/glsl/Makefile View File

@@ -15,7 +15,7 @@ LIBS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLEW_LIB) -l$(GLU_LIB) \

# using : to avoid APP_CC pointing to CC loop
CC := $(APP_CC)
CFLAGS += -I$(INCDIR)
CFLAGS := -I$(INCDIR) $(CFLAGS)
LDLIBS = $(LIBS)

PROG_SOURCES = \

Loading…
Cancel
Save