summaryrefslogtreecommitdiff
path: root/src/glut/beos/Makefile
diff options
context:
space:
mode:
authorPhilippe Houdoin <phoudoin@freedesktop.org>2004-08-16 08:46:38 +0000
committerPhilippe Houdoin <phoudoin@freedesktop.org>2004-08-16 08:46:38 +0000
commit479b3d074589b1582e85aec90e53b82154ebcc2d (patch)
tree2392d65aa78320e15f8f33b3337f78923d2d37c4 /src/glut/beos/Makefile
parent375047ba7218f56a72477507e5d02cfa85fe00e2 (diff)
Add glutGetProcAddress(). Not all GLUT version 5 APIs are supported yet, thought.
-> #define GLUT_API_VERSION 4.5 ? ;-)
Diffstat (limited to 'src/glut/beos/Makefile')
-rw-r--r--src/glut/beos/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/glut/beos/Makefile b/src/glut/beos/Makefile
index 9104fd8edf..effd3749a4 100644
--- a/src/glut/beos/Makefile
+++ b/src/glut/beos/Makefile
@@ -52,7 +52,8 @@ C_SOURCES = \
glut_shapes.c \
glut_teapot.c \
glut_vidresize.c \
- glut_util.c
+ glut_util.c \
+ glut_ext.c
OBJECTS = \
$(CPP_SOURCES:.cpp=.o) \
@@ -63,8 +64,6 @@ INCLUDES = \
-I- \
-I$(TOP)/include
-DEFINES += -DGLUT_API_VERSION=4
-
# Rules
.cpp.o:
@@ -84,7 +83,7 @@ $(LIB_DIR):
# Make the library
$(LIB_DIR)/$(GLUT_LIB_NAME): depend $(OBJECTS)
- $(TOP)/bin/mklib -o $(GLUT_LIB) -major $(GLUT_MAJOR) -minor $(GLUT_MINOR) -patch $(GLUT_TINY) \
+ @$(TOP)/bin/mklib -o $(GLUT_LIB) -major $(GLUT_MAJOR) -minor $(GLUT_MINOR) -patch $(GLUT_TINY) \
-install $(LIB_DIR) $(MKLIB_OPTIONS) $(GLUT_LIB_DEPS) \
$(OBJECTS)