diff options
author | Philippe Houdoin <[email protected]> | 2004-08-14 10:03:11 +0000 |
---|---|---|
committer | Philippe Houdoin <[email protected]> | 2004-08-14 10:03:11 +0000 |
commit | ea446b56abab8752969241de995ba87eb111bc58 (patch) | |
tree | 806c2214fc274b913de0a19f49d5f368fa555f32 /progs/samples/Makefile | |
parent | f17ddd4884cccdbd15e7a3bebaeec32de4b6658e (diff) |
Obsolete BeOS-specific makefile.
Removed the oglinfo target from samples from BeOS build, as it depends on X.
Diffstat (limited to 'progs/samples/Makefile')
-rw-r--r-- | progs/samples/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/progs/samples/Makefile b/progs/samples/Makefile index d7fcf8709d6..463fd5a0c57 100644 --- a/progs/samples/Makefile +++ b/progs/samples/Makefile @@ -8,9 +8,14 @@ INCDIR = $(TOP)/include LIB_DEP = $(LIB_DIR)/$(GL_LIB_NAME) $(LIB_DIR)/$(GLU_LIB_NAME) $(LIB_DIR)/$(GLUT_LIB_NAME) PROGS = accum bitmap1 bitmap2 blendeq blendxor copy cursor depth eval fog \ - font line logo nurb oglinfo olympic overlay point prim quad select \ + font line logo nurb olympic overlay point prim quad select \ shape sphere star stencil stretch texture tri wave +ifeq ($(CONFIG_NAME), beos) + LIB_DEP = $(APP_LIB_DEPS) +else + PROGS += oglinfo +endif ##### RULES ##### |