Various clean ups for the release.

This commit is contained in:
Robert Osfield
2001-12-24 14:12:38 +00:00
parent fb5fee6c5e
commit 3652bd9015
27 changed files with 149 additions and 101 deletions

View File

@@ -1,8 +1,13 @@
#!smake
SHELL=/bin/sh
DIRS = osg osgDB osgUtil osgGLUT
DIRS = osg osgDB osgUtil osgText osgGLUT Demos osgPlugins
# comment out if you don't have the freetype and GLU1.3 library installed.
DIRS += osgText
DIRS += Demos
DIRS += osgPlugins
all :
for f in $(DIRS) ; do cd $$f; $(MAKE) || exit 1; cd ..; done