home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / System / Mesa-3.1 / src-glu / Makefile.am < prev    next >
Makefile  |  1999-11-19  |  644b  |  35 lines

  1. ## Process this file with automake to produce Makefile.in
  2.  
  3. #AUTOMAKE_OPTIONS = no-dependencies
  4.  
  5. INCLUDES = -I$(top_srcdir)/include
  6.  
  7. # Build a libtool library for installation in libdir.
  8. lib_LTLIBRARIES = libGLU.la
  9.  
  10. libGLU_la_LDFLAGS = -version-info $(LIBGLU_VERSION)
  11. libGLU_la_SOURCES = \
  12.     all.h \
  13.     glu.c \
  14.     gluP.h \
  15.     mipmap.c \
  16.     nurbs.c \
  17.     nurbs.h \
  18.     nurbscrv.c \
  19.     nurbssrf.c \
  20.     nurbsutl.c \
  21.     project.c \
  22.     quadric.c \
  23.     tess.c \
  24.     tess_fist.c \
  25.     tess_hash.c \
  26.     tess_heap.c \
  27.     tess_winding.c \
  28.     tess_clip.c
  29.  
  30. strip:
  31.     -if strip -V 2>&1  | grep "GNU" > /dev/null; then \
  32.         strip --strip-unneeded .libs/*.so; \
  33.         strip --strip-debug .libs/*.a; \
  34.     fi
  35.