home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 1.6 KB | 47 lines |
- #!smake
-
- PROGRAM = SceneViewer
-
- C++FILES = SceneViewer.c++ SoSceneViewer.c++ SvManipList.c++ MySlider.c++\
- MyFloatCBList.c++ MyColEd.c++ MyColPatch.c++ MyColSlider.c++\
- MyColWheel.c++ MyUIRegion.c++
- HFILES = SoSceneViewer.h SoSceneMenu.h SvManipList.h MySlider.h\
- MyFloatCallbackList.h MyColorEditor.h MyColorPatch.h\
- MyColorSlider.h MyColorWheel.h MyUIRegion.h
-
- # /usr/include/make/commondefs and /usr/include/make/commonrules
- # define some useful Makefile rules. For example, they
- # defines a 'clean' target, so you can type 'make clean'
- # to remove all .o files (or other files generated during
- # compilation). See the file /usr/include/make/commonrules for
- # documentation on what targets are supported.
-
- include /usr/include/make/commondefs
-
- TARGETS = $(PROGRAM)
- #LC++OPTS=-g
-
- # In IRIX 5.2, programs that directly make OpenGL and Inventor
- # calls will not quickstart because OpenGL is machine-specific,
- # and the version of OpenGL used when building Inventor will
- # usually not match the version of OpenGL installed on your
- # machine. The LD_QUICKSTART_INFO line keeps the loader from
- # complaining about this.
- # See the "DSO" manual page for information on what quickstart is; see
- # the "rqs" manual page for information on how to "re-quickstart"
- # applications and libraries so that your Inventor applications will
- # startup more quickly.
- LD_QUICKSTART_INFO=
-
- # Libraries to link with:
-
- LLDLIBS = -lGLw -lGL -lX11 -lm -lInventorXt
-
- default all: $(TARGETS)
-
- include $(COMMONRULES)
-
- $(TARGETS): $(OBJECTS)
- $(C++F) -o $@ $(OBJECTS) $(LDFLAGS)
-
-