e09ed92d0e
-- The GLE Tubing and Extrusion Library is a graphics application programming interface (API). The library consists of a number of "C" language subroutines for drawing tubing and extrusions. It is a very fast implementation of these shapes, outperforming all other implementations, most by orders of magnitude. The library is distributed in source code form, in a package that includes documentation, a VRML proposal, Makefiles, and full source code and header files. It uses the OpenGL (TM) programming API to perform the actual drawing of the tubing and extrusions. GLE is designed for and maintained on the Linux operating system, and is known to run on other Unix operating systems such as AIX, IRIX, Ultrix and HPUX with OpenGL or Mesa. GLE is also known to run on IBM OS/2 Warp, Apple Macintosh OS9, and Microsoft Windows NT and has been used to develop screen-savers for some of these popular PC operating systems. WWW: http://www.linas.org/gle/
46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
$OpenBSD: patch-man_Makefile_in,v 1.1.1.1 2001/06/20 18:57:28 lebel Exp $
|
|
--- man/Makefile.in.orig Wed Jun 13 15:13:03 2001
|
|
+++ man/Makefile.in Wed Jun 20 14:15:13 2001
|
|
@@ -70,15 +70,15 @@ PACKAGE = @PACKAGE@
|
|
RANLIB = @RANLIB@
|
|
VERSION = @VERSION@
|
|
|
|
-man_MANS = gle.3gle gleExtrusion.3gle gleHelicoid.3gle gleLathe.3gle glePolyCone.3gle glePolyCylinder.3gle gleScrew.3gle gleSetJoinStyle.3gle gleSetNumSides.3gle gleSpiral.3gle gleSuperExtrusion.3gle gleTextureMode.3gle gleToroid.3gle gleTwistExtrusion.3gle
|
|
+man_MANS = gle.3 gleExtrusion.3 gleHelicoid.3 gleLathe.3 glePolyCone.3 glePolyCylinder.3 gleScrew.3 gleSetJoinStyle.3 gleSetNumSides.3 gleSpiral.3 gleSuperExtrusion.3 gleTextureMode.3 gleToroid.3 gleTwistExtrusion.3
|
|
|
|
|
|
-man_RAW = $(man_MANS:.3gle=.man)
|
|
+man_RAW = $(man_MANS:.3=.man)
|
|
|
|
EXTRA_DIST = $(man_RAW) Makefile.sgi
|
|
|
|
|
|
-SUFFIXES = .man .3gle
|
|
+SUFFIXES = .man .3
|
|
|
|
CLEANFILES = $(man_MANS)
|
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
|
@@ -102,7 +102,7 @@ TAR = gtar
|
|
GZIP_ENV = --best
|
|
all: all-redirect
|
|
.SUFFIXES:
|
|
-.SUFFIXES: .3gle .man
|
|
+.SUFFIXES: .3 .man
|
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps man/Makefile
|
|
|
|
@@ -233,11 +233,11 @@ maintainer-clean-generic clean mostlycle
|
|
|
|
|
|
# for the ordinary install, just copy the raw files ....
|
|
-.man.3gle:
|
|
+.man.3:
|
|
cp -p $< $@
|
|
|
|
# preformat and compress -- these should install in the preformat dir
|
|
-.man.3gle.gz:
|
|
+.man.3.gz:
|
|
nroff -man < $< > $*.nr
|
|
gzip $*.nr
|
|
mv $*.nr.gz $@
|