diff options
author | Philippe Houdoin <phoudoin@freedesktop.org> | 2004-08-16 08:46:38 +0000 |
---|---|---|
committer | Philippe Houdoin <phoudoin@freedesktop.org> | 2004-08-16 08:46:38 +0000 |
commit | 479b3d074589b1582e85aec90e53b82154ebcc2d (patch) | |
tree | 2392d65aa78320e15f8f33b3337f78923d2d37c4 /src/glut/beos/Makefile | |
parent | 375047ba7218f56a72477507e5d02cfa85fe00e2 (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/Makefile | 7 |
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) |