/*
 * Copyright (c) 1991, 1992, 1993 Silicon Graphics, Inc.
 *
 * Permission to use, copy, modify, distribute, and sell this software and
 * its documentation for any purpose is hereby granted without fee, provided
 * that (i) the above copyright notices and this permission notice appear in
 * all copies of the software and related documentation, and (ii) the name of
 * Silicon Graphics may not be used in any advertising or
 * publicity relating to the software without the specific, prior written
 * permission of Silicon Graphics.
 *
 * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF
 * ANY KIND,
 * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
 *
 * IN NO EVENT SHALL SILICON GRAPHICS BE LIABLE FOR
 * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
 * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
 * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
 * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
 * OF THIS SOFTWARE.
 */
SRCS = \
accum.c     depth.c     logo.c      prim.c      sphere.c    tri.c \
bitmap1.c   eval.c      nurb.c      quad.c      star.c      wave.c \
bitmap2.c   fog.c       olympic.c   select.c    stencil.c \
copy.c      font.c      overlay.c   shape.c     stretch.c \
cursor.c    line.c      point.c     speed.c     texture.c

PROGRAMS = \
accum.o     depth.o     logo.o      prim.o      sphere.o    tri.o \
bitmap1.o   eval.o      nurb.o      quad.o      star.o      wave.o \
bitmap2.o   fog.o       olympic.o   select.o    stencil.o \
copy.o      font.o      overlay.o   shape.o     stretch.o \
cursor.o    line.o      point.o     speed.o     texture.o

DEP_LIBRARIES = ../libtk/libtk.a ../../../../lib/GL/glu/libGLU.a \
		../../../../lib/GL/libGL.a

LOCAL_LIBRARIES = $(DEP_LIBRARIES) $(XLIB)

INCLUDES = -I$(TOP) -I../../../../include -I../libtk

AllTarget($(PROGRAMS))

NormalProgramTarget(accum,accum.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(bitmap1,bitmap1.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(bitmap2,bitmap2.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(copy,copy.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(cursor,cursor.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(depth,depth.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(eval,eval.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(fog,fog.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(font,font.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(line,line.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(logo,logo.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(nurb,nurb.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(olympic,olympic.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(overlay,overlay.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(point,point.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(prim,prim.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(quad,quad.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(select,select.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(shape,shape.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(speed,speed.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(sphere,sphere.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(star,star.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(stencil,stencil.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(stretch,stretch.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(texture,texture.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(tri,tri.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)
NormalProgramTarget(wave,wave.o,$(DEP_LIBRARIES),$(LOCAL_LIBRARIES),-lm)

DependTarget()
CleanTarget()

