06abf2266b
Also a couple of undefined methods in osgText::Text have been added.
41 lines
962 B
Makefile
41 lines
962 B
Makefile
#!smake
|
|
SHELL=/bin/sh
|
|
|
|
|
|
DIRS = osg osgDB osgUtil osgText osgGLUT Demos osgPlugins
|
|
|
|
all :
|
|
for f in $(DIRS) ; do cd $$f; $(MAKE) || exit 1; cd ..; done
|
|
|
|
clean :
|
|
for f in $(DIRS) ; do cd $$f; $(MAKE) clean; cd ..; done
|
|
|
|
clobber :
|
|
for f in $(DIRS) ; do cd $$f; $(MAKE) clobber; cd ..; done
|
|
|
|
depend :
|
|
for f in $(DIRS) ; do cd $$f; $(MAKE) depend; cd ..; done
|
|
|
|
docs :
|
|
(cd osg; $(MAKE) docs;)
|
|
(cd osgUtil; $(MAKE) docs; )
|
|
(cd osgDB; $(MAKE) docs; )
|
|
(cd osgGLUT; $(MAKE) docs; )
|
|
(cd osgText; $(MAKE) docs; )
|
|
|
|
to_unix :
|
|
for f in $(DIRS) ; do cd $$f; to_unix Makefile Makefile; cd ..; done
|
|
for f in $(DIRS) ; do cd $$f; $(MAKE) to_unix; cd ..; done
|
|
|
|
beautify :
|
|
for f in $(DIRS) ; do cd $$f; $(MAKE) beautify; cd ..; done
|
|
|
|
install :
|
|
for f in $(DIRS) ; do cd $$f; $(MAKE) install; cd ..; done
|
|
|
|
instlinks :
|
|
for f in $(DIRS) ; do cd $$f; $(MAKE) instlinks; cd ..; done
|
|
|
|
instclean :
|
|
for f in $(DIRS) ; do cd $$f; $(MAKE) instclean; cd ..; done
|