home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 2000 April & May / AMIGA_2000_04.iso / patches / mesa3.1 / book / makefile.am < prev    next >
Makefile  |  1999-09-23  |  932b  |  29 lines

  1. ## Process this file with automake to produce Makefile.in
  2.  
  3. #AUTOMAKE_OPTIONS = no-dependencies
  4.  
  5. INCLUDES = -I$(top_srcdir)/include $(GLUT_CFLAGS)
  6.  
  7. check_PROGRAMS = aaindex aapoly aargb accanti accpersp alpha alpha3D anti \
  8.     bezcurve bezmesh checker clip colormat cube depthcue dof \
  9.     double drawf feedback fog fogindex font hello image light \
  10.     lines list material mipmap model movelight nurbs pickdepth \
  11.     picksquare plane planet polyoff polys quadric robot sccolorlight \
  12.     scene scenebamb sceneflat select smooth stencil stroke surface \
  13.     teaambient teapots tess tesswind texbind texgen texprox texsub \
  14.     texturesurf torus trim unproject varray wrap 
  15.  
  16. EXTRA_DIST = jitter.h
  17.  
  18. LDADD = $(GLUT_LIBS) $(top_builddir)/src-glu/libGLU.la \
  19.     $(top_builddir)/src/libGL.la -lm
  20.  
  21. # execute all programs
  22. exec: $(check_PROGRAMS)
  23.     @for prog in $(check_PROGRAMS);    \
  24.     do                \
  25.      echo -n "Running $$prog ..." ;    \
  26.      ./$$prog ;            \
  27.      echo ;                \
  28.     done
  29.