1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
noinst_PROGRAMS = \
alpha \
beam \
candlestick \
cone \
cylinder \
helix \
helix2 \
helix3 \
helix4 \
helixtex \
horn \
joincone \
joinoffset \
joinstyle \
screw \
taper \
texas \
transport \
twistoid \
twistex \
twoid
alpha_SOURCES = alpha.c mainjoin.c
beam_SOURCES = beam.c mainsimple.c
cone_SOURCES = cone.c mainsimple.c
cylinder_SOURCES = cylinder.c mainsimple.c
helix_SOURCES = helix.c mainsimple.c
helix2_SOURCES = helix2.c mainsimple.c
helix3_SOURCES = helix3.c mainsimple.c
helix4_SOURCES = helix4.c mainsimple.c
helixtex_SOURCES = helixtex.c texture.c maintex.c
horn_SOURCES = horn.c mainsimple.c
joincone_SOURCES = cone.c mainjoin.c
joinoffset_SOURCES = joinoffset.c mainjoin.c
joinstyle_SOURCES = cylinder.c mainjoin.c
screw_SOURCES = screw.c texture.c maintex.c
taper_SOURCES = taper.c mainsimple.c
texas_SOURCES = texas.c mainjoin.c
twistoid_SOURCES = twoid.c
twistex_SOURCES = twistoid.c texture.c maintex.c
EXTRA_DIST = \
.cvsignore Makefile.examples rundemo README
noinst_HEADERS = \
main.h \
texture.h
INCLUDES = \
@X_CFLAGS@ \
-I${top_srcdir} \
-I${top_srcdir}/src
LDADD = @X_LIBS@ -L../src/
docdir = $(datadir)/doc/gle-doc/examples
doc_DATA = \
COPYING \
Makefile.examples \
README \
rundemo \
main.h \
texture.h \
alpha.c \
beam.c \
candlestick.c \
cone.c \
cylinder.c \
helix.c \
helix2.c \
helix3.c \
helix4.c \
helixtex.c \
horn.c \
joinoffset.c \
mainjoin.c \
mainsimple.c \
maintex.c \
screw.c \
taper.c \
texas.c \
texture.c \
transport.c \
twoid.c \
twistoid.c
run:
rundemo
|