summaryrefslogtreecommitdiffstats
path: root/glut/mingw32
diff options
context:
space:
mode:
Diffstat (limited to 'glut/mingw32')
-rwxr-xr-xglut/mingw324
1 files changed, 2 insertions, 2 deletions
diff --git a/glut/mingw32 b/glut/mingw32
index 808146e..c6bbc65 100755
--- a/glut/mingw32
+++ b/glut/mingw32
@@ -7,10 +7,10 @@ ifdef DEBUG
else
CFLAGS = -Wall -std=c99 -O2 -march=native -mtune=native
endif
-LFLAGS = -lglew32 -lopengl32 -lglu32 -lm -lfreeglut
+LDFLAGS = -lglew32 -lopengl32 -lglu32 -lm -lfreeglut
$(PROG): $(OBJS)
- $(CC) -o $(PROG) $(OBJS) $(LFLAGS)
+ $(CC) -o $(PROG) $(OBJS) $(LDFLAGS)
$(PROG).o: $(PROG).c math3d.h
$(CC) -c $(CFLAGS) $(PROG).c