a824037eefc27f2cfa438a54af207fb75c50db2e
[xscreensaver] / hacks / glx / Makefile.in
1 # hacks/glx/Makefile.in --- xscreensaver, Copyright (c) 1999, 2000
2 #  by Jamie Zawinski.
3 # the `../../configure' script generates `hacks/glx/Makefile' from this file.
4
5 @SET_MAKE@
6 .SUFFIXES:
7 .SUFFIXES: .c .o
8
9 srcdir          = @srcdir@
10 VPATH           = @srcdir@
11
12 install_prefix  =
13 prefix          = @prefix@
14 exec_prefix     = @exec_prefix@
15 bindir          = @bindir@
16 mandir          = @mandir@
17 man1dir         = $(mandir)/man1
18 mansuffix       = 1
19
20 CC              = @CC@
21 CFLAGS          = @CFLAGS@
22 LDFLAGS         = @LDFLAGS@
23 DEFS            = -DSTANDALONE -DUSE_GL @DEFS@
24 LIBS            = @LIBS@
25
26 DEPEND          = @DEPEND@
27 DEPEND_FLAGS    = @DEPEND_FLAGS@
28 DEPEND_DEFINES  = @DEPEND_DEFINES@
29
30 SHELL           = /bin/sh
31 INSTALL         = @INSTALL@
32 INSTALL_PROGRAM = @INSTALL_PROGRAM@
33 INSTALL_DATA    = @INSTALL_DATA@
34 INSTALL_DIRS    = @INSTALL_DIRS@
35 HACKDIR         = @HACKDIR@
36
37 X_CFLAGS        = @X_CFLAGS@
38 X_LIBS          = @X_LIBS@
39 X_PRE_LIBS      = @X_PRE_LIBS@
40 X_EXTRA_LIBS    = @X_EXTRA_LIBS@
41 XMU_LIBS        = @XMU_LIBS@
42
43 # Note: see comment in ../../driver/Makefile.in for explanation of X_LIBS, etc.
44 #
45 HACK_PRE        = $(LIBS) $(X_LIBS)
46 HACK_POST     = $(X_PRE_LIBS) -lXt -lX11 $(XMU_LIBS) -lXext $(X_EXTRA_LIBS) -lm
47 HACK_POST2      = @GL_LIBS@ @HACK_LIBS@ $(HACK_POST)
48 HACK_LIBS       = $(HACK_PRE)                       $(HACK_POST2)
49 XPM_LIBS        = $(HACK_PRE)            @XPM_LIBS@ $(HACK_POST2)
50 GLE_LIBS        = $(HACK_PRE) @GLE_LIBS@ @XPM_LIBS@ $(HACK_POST2)
51
52 HACK_SRC        = $(srcdir)/..
53 HACK_BIN        = ..
54 UTILS_SRC       = $(HACK_SRC)/../utils
55 UTILS_BIN       = $(HACK_BIN)/../utils
56
57 INCLUDES        = -I. -I$(srcdir) -I$(UTILS_SRC) -I$(HACK_SRC) -I../.. @INCLUDES@
58
59 UTIL_SRCS       = $(UTILS_SRC)/colors.c $(UTILS_SRC)/hsv.c \
60                   $(UTILS_SRC)/resources.c $(UTILS_SRC)/usleep.c \
61                   $(UTILS_SRC)/visual.c $(UTILS_SRC)/visual-gl.c \
62                   $(UTILS_SRC)/yarandom.c
63 UTIL_OBJS       = $(UTILS_SRC)/colors.o $(UTILS_SRC)/hsv.o \
64                   $(UTILS_SRC)/resources.o $(UTILS_SRC)/usleep.o \
65                   $(UTILS_SRC)/visual.o $(UTILS_SRC)/visual-gl.o \
66                    $(UTILS_SRC)/yarandom.o
67
68 SRCS            = xscreensaver-gl-helper.c \
69                   atlantis.c b_draw.c b_lockglue.c b_sphere.c bubble3d.c \
70                   buildlwo.c cage.c dolphin.c gears.c lament.c moebius.c \
71                   morph3d.c pipeobjs.c pipes.c rubik.c s1_1.c s1_2.c s1_3.c \
72                   s1_4.c s1_5.c s1_6.c s1_b.c shark.c sproingies.c \
73                   sproingiewrap.c stairs.c superquadrics.c swim.c whale.c \
74                   xlock-gl.c fps.c xpm-ximage.c glplanet.c pulsar.c \
75                   extrusion.c extrusion-helix2.c extrusion-helix3.c \
76                   extrusion-helix4.c extrusion-joinoffset.c extrusion-screw.c \
77                   extrusion-taper.c extrusion-twistoid.c sierpinski3d.c \
78                   gflux.c stonerview.c stonerview-move.c stonerview-osc.c \
79                   stonerview-view.c starwars.c glut_stroke.c glut_swidth.c \
80                   gltext.c molecule.c dangerball.c sphere.c tube.c circuit.c \
81                   menger.c engine.c flipscreen3d.c font-ximage.c grab-ximage.c
82
83 OBJS            = xscreensaver-gl-helper.o \
84                   atlantis.o b_draw.o b_lockglue.o b_sphere.o bubble3d.o \
85                   buildlwo.o cage.o dolphin.o gears.o lament.o moebius.o \
86                   morph3d.o pipeobjs.o pipes.o rubik.o s1_1.o s1_2.o s1_3.o \
87                   s1_4.o s1_5.o s1_6.o s1_b.o shark.o sproingies.o \
88                   sproingiewrap.o stairs.o superquadrics.o swim.o whale.o \
89                   xlock-gl.o fps.o xpm-ximage.o glplanet.o pulsar.o \
90                   extrusion.o extrusion-helix2.o extrusion-helix3.o \
91                   extrusion-helix4.o extrusion-joinoffset.o extrusion-screw.o \
92                   extrusion-taper.o extrusion-twistoid.o sierpinski3d.o \
93                   gflux.o stonerview.o stonerview-move.o stonerview-osc.o \
94                   stonerview-view.o starwars.o glut_stroke.o glut_swidth.o \
95                   gltext.o molecule.o dangerball.o sphere.o tube.o circuit.o \
96                   menger.o engine.o flipscreen3d.o font-ximage.o grab-ximage.o
97
98 GL_EXES         = cage gears moebius pipes sproingies stairs superquadrics \
99                   morph3d rubik atlantis lament bubble3d glplanet pulsar \
100                   sierpinski3d gflux stonerview starwars gltext molecule \
101                   dangerball circuit menger engine flipscreen3d
102 GLE_EXES        = extrusion
103 GL_UTIL_EXES    = xscreensaver-gl-helper
104 HACK_EXES       = @GL_EXES@ @GLE_EXES@
105 GRAB_OBJS       = $(UTILS_BIN)/grabclient.o grab-ximage.o
106 EXES            = @GL_UTIL_EXES@ $(HACK_EXES)
107
108 HACK_OBJS       = screenhack-gl.o xlock-gl.o fps.o $(HACK_BIN)/xlockmore.o \
109                   $(UTILS_BIN)/resources.o $(UTILS_BIN)/visual.o \
110                   $(UTILS_BIN)/visual-gl.o $(UTILS_BIN)/usleep.o \
111                   $(UTILS_BIN)/yarandom.o $(UTILS_BIN)/hsv.o \
112                   $(UTILS_BIN)/colors.o
113
114 HDRS            = atlantis.h bubble3d.h buildlwo.h e_textures.h xpm-ximage.h \
115                   grab-ximage.h font-ximage.h tube.h sphere.h \
116                   stonerview-move.h stonerview-osc.h glutstroke.h glut_roman.h
117 GL_MEN          = gflux.man lament.man starwars.man gltext.man \
118                   molecule.man xscreensaver-gl-helper.man
119 MEN             = @GL_MEN@
120 EXTRAS          = README Makefile.in
121
122 TARFILES        = $(SRCS) $(HDRS) $(MEN) $(EXTRAS)
123
124
125 default: all
126 all: $(EXES)
127
128 install:   install-program   install-man
129 uninstall: uninstall-program uninstall-man
130
131 install-strip:
132         $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
133
134 # the hacks, in $HACKDIR
135 install-program:: $(EXES)
136         @exes="$(HACK_EXES)" ;                                          \
137          idir="$(install_prefix)$(HACKDIR)" ;                           \
138          if [ "$$exes" != "" ]; then                                    \
139            if [ ! -d $$idir ]; then                                     \
140              $(INSTALL_DIRS) $$idir ;                                   \
141            fi ;                                                         \
142            for program in $$exes; do                                    \
143              echo $(INSTALL_PROGRAM) $$program $$idir/$$program ;       \
144                   $(INSTALL_PROGRAM) $$program $$idir/$$program ;       \
145            done ;                                                       \
146          fi
147
148 # the xscreensaver-gl-helper program, in $bindir
149 install-program:: $(EXES)
150         @exes="@GL_UTIL_EXES@" ;                                        \
151          idir="$(install_prefix)$(bindir)" ;                            \
152          if [ "$$exes" != "" ]; then                                    \
153            if [ ! -d $$idir ]; then                                     \
154              $(INSTALL_DIRS) $$idir ;                                   \
155            fi ;                                                         \
156            for program in $$exes; do                                    \
157              echo $(INSTALL_PROGRAM) $$program $$idir/$$program ;       \
158                   $(INSTALL_PROGRAM) $$program $$idir/$$program ;       \
159            done ;                                                       \
160          fi
161
162 install-man: $(MEN)
163         @men="$(MEN)" ;                                                 \
164          idir="$(install_prefix)$(man1dir)" ;                           \
165          if [ ! -d $$idir ]; then                                       \
166           $(INSTALL_DIRS) $$idir ;                                      \
167          fi ;                                                           \
168          for man in $$men; do                                           \
169            instname=`echo $$man | sed 's/\.man$$/\.$(mansuffix)/'` ;    \
170            echo $(INSTALL_DATA) $(srcdir)/$$man $$idir/$$instname ;     \
171                 $(INSTALL_DATA) $(srcdir)/$$man $$idir/$$instname ;     \
172          done
173
174 # the hacks, in $HACKDIR
175 uninstall-program::
176         @exes="$(HACK_EXES)" ;                                          \
177          idir="$(install_prefix)$(HACKDIR)" ;                           \
178          for program in $$exes; do                                      \
179            echo rm -f $$idir/$$program ;                                \
180                 rm -f $$idir/$$program ;                                \
181          done
182
183 # the xscreensaver-gl-helper program, in $bindir
184 uninstall-program::
185         @exes="$(GL_UTIL_EXES)" ;                                       \
186          idir="$(install_prefix)$(bindir)" ;                            \
187          for program in $$exes; do                                      \
188            echo rm -f $$idir/$$program ;                                \
189                 rm -f $$idir/$$program ;                                \
190         done
191
192 uninstall-man:
193         @men="$(MEN)" ;                                                 \
194          idir="$(install_prefix)$(man1dir)" ;                           \
195          for man in $$men; do                                           \
196            instname=`echo $$man | sed 's/\.man$$/\.$(mansuffix)/'` ;    \
197            echo rm -f $$idir/$$instname ;                               \
198                 rm -f $$idir/$$instname ;                               \
199         done
200
201 clean:
202         -rm -f *.o a.out core $(EXES) molecules.h
203
204 distclean: clean
205         -rm -f Makefile TAGS *~ "#"*
206
207 # Adds all current dependencies to Makefile
208 depend:
209         $(DEPEND) -s '# DO NOT DELETE: updated by make depend'              \
210         $(DEPEND_FLAGS) --                                                  \
211         $(INCLUDES) $(DEFS) $(DEPEND_DEFINES) $(CFLAGS) $(X_CFLAGS) --      \
212         $(SRCS)
213
214 # Adds some dependencies to Makefile.in -- not totally accurate, but pretty
215 # close.  This excludes dependencies on files in /usr/include, etc.  It tries
216 # to include only dependencies on files which are themselves a part of this
217 # package.
218 distdepend:: molecules.h
219         @echo updating dependencies in `pwd`/Makefile.in... ;               \
220         $(DEPEND) -w 0 -f -                                                 \
221         -s '# DO NOT DELETE: updated by make distdepend' $(DEPEND_FLAGS) -- \
222         $(INCLUDES) $(DEFS) $(DEPEND_DEFINES) $(CFLAGS) $(X_CFLAGS) --      \
223         $(SRCS) |                                                           \
224         (                                                                   \
225           awk '/^# .*Makefile.in ---/,/^# DO .*distdepend/' < Makefile.in ; \
226           sed -e 's@ \./@ @g;s@ /[^ ]*@@g;/^.*:$$/d'                        \
227               -e 's@\.\./\.\./utils@$$(UTILS_SRC)@g'                        \
228               -e 's@\.\./glx/@@g'                                           \
229               -e 's@ \.\./@ $$(HACK_SRC)/@g'                                \
230               -e 's@ \([^$$]\)@ $$(srcdir)/\1@g'                            \
231               -e 's@ $$(srcdir)/\(.*config.h\)@ \1@g'                       \
232               -e 's@ $$(HACK_SRC)/\(.*config.h\)@ ../\1@g'                  \
233               -e 's@ $$(srcdir)/\(.*molecules.h\)@ \1@g' ;                  \
234           echo ''                                                           \
235         ) > /tmp/distdepend.$$$$ &&                                         \
236         mv Makefile.in Makefile.in.bak &&                                   \
237         mv /tmp/distdepend.$$$$ Makefile.in
238
239 TAGS: tags
240 tags:
241         find $(srcdir) -name '*.[chly]' -print | xargs etags -a
242
243 echo_tarfiles:
244         @echo $(TARFILES)
245
246
247 # Rules for noticing when the objects from the utils directory are out of
248 # date with respect to their sources, and going and building them according
249 # to the rules in their own Makefile...
250 #
251 $(UTILS_BIN)/colors.o:          $(UTILS_SRC)/colors.c
252 $(UTILS_BIN)/hsv.o:             $(UTILS_SRC)/hsv.c
253 $(UTILS_BIN)/resources.o:       $(UTILS_SRC)/resources.c
254 $(UTILS_BIN)/usleep.o:          $(UTILS_SRC)/usleep.c
255 $(UTILS_BIN)/visual.o:          $(UTILS_SRC)/visual.c
256 $(UTILS_BIN)/visual-gl.o:       $(UTILS_SRC)/visual-gl.c
257 $(UTILS_BIN)/yarandom.o:        $(UTILS_SRC)/yarandom.c
258
259 $(UTIL_OBJS):
260         cd $(UTILS_BIN) ; \
261         $(MAKE) $(@F) CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"
262
263 $(HACK_BIN)/xlockmore.o: $(HACK_SRC)/xlockmore.c
264         cd $(HACK_BIN)  ; $(MAKE) $(@F) CC="$(CC)" CFLAGS="$(CFLAGS)"
265
266
267 # How we build object files in this directory.
268 .c.o:
269         $(CC) -c $(INCLUDES) $(DEFS) $(CFLAGS) $(X_CFLAGS) $<
270
271
272 # How to build the "xscreensaver-gl-helper" program, that lets the daemon
273 # know which visual is the right one for GL programs.
274 #
275 HELPER_OBJS = xscreensaver-gl-helper.o $(UTILS_BIN)/visual-gl.o \
276               $(UTILS_BIN)/visual.o $(UTILS_BIN)/resources.o
277 xscreensaver-gl-helper: $(HELPER_OBJS)
278         $(CC) $(LDFLAGS) -o $@ $(HELPER_OBJS) $(LIBS) $(X_LIBS) $(HACK_POST2)
279
280
281 # These hacks use a slightly-differently-compiled variant of screenhack.c.
282 # This is how to make the the other .o file from it.
283 #
284 screenhack-gl.o: $(HACK_SRC)/screenhack.c
285         $(CC) -o $@ -c $(INCLUDES) $(DEFS) $(CFLAGS) $(X_CFLAGS) \
286           -DXLOCKMORE  -DUSE_GL $(HACK_SRC)/screenhack.c
287
288 CC_HACK         = $(CC) $(LDFLAGS)
289
290 ATLANTIS_OBJS = $(HACK_OBJS) dolphin.o shark.o swim.o whale.o xpm-ximage.o
291 atlantis:       atlantis.o      $(ATLANTIS_OBJS)
292         $(CC_HACK) -o $@ $@.o   $(ATLANTIS_OBJS) $(HACK_LIBS) $(XPM_LIBS)
293
294 cage:           cage.o          $(HACK_OBJS)
295         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
296
297 gears:          gears.o         $(HACK_OBJS)
298         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
299
300 moebius:        moebius.o               $(HACK_OBJS)
301         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
302
303 pipes:          pipes.o         $(HACK_OBJS) pipeobjs.o buildlwo.o
304         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) pipeobjs.o buildlwo.o \
305           $(HACK_LIBS)
306
307 superquadrics:  superquadrics.o $(HACK_OBJS)
308         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
309
310 morph3d:        morph3d.o       $(HACK_OBJS)
311         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
312
313 rubik:          rubik.o $(HACK_OBJS)
314         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
315
316 stairs:         stairs.o        $(HACK_OBJS)
317         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
318
319 SPROINGIES = sproingiewrap.o buildlwo.o \
320              s1_1.o s1_2.o s1_3.o s1_4.o s1_5.o s1_6.o s1_b.o
321 sproingies: sproingies.o $(HACK_OBJS) $(SPROINGIES)
322         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(SPROINGIES) $(HACK_LIBS)
323
324 lament:         lament.o        $(HACK_OBJS) xpm-ximage.o
325         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) xpm-ximage.o $(XPM_LIBS)
326
327 B3D = b_sphere.o b_draw.o b_lockglue.o
328 bubble3d:       bubble3d.o      $(HACK_OBJS) $(B3D)
329         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(B3D) $(HACK_LIBS)
330
331 glplanet:       glplanet.o      sphere.o xpm-ximage.o $(HACK_OBJS)
332         $(CC_HACK) -o $@ $@.o   sphere.o xpm-ximage.o $(HACK_OBJS) $(XPM_LIBS)
333
334 pulsar:         pulsar.o        $(HACK_OBJS)
335         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
336
337 EXTRUSION_OBJS=extrusion.o extrusion-helix2.o extrusion-helix3.o    \
338         extrusion-helix4.o extrusion-joinoffset.o extrusion-screw.o \
339         extrusion-taper.o extrusion-twistoid.o
340 extrusion:      $(EXTRUSION_OBJS) $(HACK_OBJS)
341         $(CC_HACK) -o $@ $(EXTRUSION_OBJS) $(HACK_OBJS) $(GLE_LIBS)
342
343 sierpinski3d:   sierpinski3d.o  $(HACK_OBJS)
344         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
345
346 gflux:          gflux.o         $(HACK_OBJS) $(GRAB_OBJS)
347         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(GRAB_OBJS) $(HACK_LIBS)
348
349 SW_OBJS=starwars.o glut_stroke.o glut_swidth.o
350 starwars:       $(SW_OBJS) $(HACK_OBJS)
351         $(CC_HACK) -o $@ $(SW_OBJS) $(HACK_OBJS) $(HACK_LIBS)
352
353 GLT_OBJS=gltext.o glut_stroke.o glut_swidth.o tube.o
354 gltext: $(GLT_OBJS) $(HACK_OBJS)
355         $(CC_HACK) -o $@ $(GLT_OBJS) $(HACK_OBJS) $(HACK_LIBS)
356
357 dangerball:     dangerball.o    sphere.o tube.o $(HACK_OBJS)
358         $(CC_HACK) -o $@ $@.o   sphere.o tube.o $(HACK_OBJS) $(HACK_LIBS)
359
360 circuit:        circuit.o       $(HACK_OBJS) font-ximage.o
361         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) font-ximage.o $(HACK_LIBS)
362
363 menger:         menger.o        $(HACK_OBJS)
364         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
365
366 engine:         engine.o        $(HACK_OBJS)
367         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
368
369 flipscreen3d:   flipscreen3d.o  $(HACK_OBJS) $(GRAB_OBJS)
370         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(GRAB_OBJS) $(HACK_LIBS)
371
372
373 # This one works differently (it's not xlock-like.)
374 #
375 STONER_OBJS=stonerview.o stonerview-move.o stonerview-osc.o stonerview-view.o \
376             $(UTILS_BIN)/yarandom.o
377 stonerview:     $(STONER_OBJS)
378         $(CC_HACK) -o $@ $(STONER_OBJS) $(HACK_LIBS)
379
380 molecules.h:
381         @tmp=molecules.h.$$$$ ;                                         \
382         rm -f $$tmp ;                                                   \
383         echo "building molecules.h from $(HACK_SRC)/images/molecules/*.pdb" ; \
384         for f in $(HACK_SRC)/images/molecules/*.pdb ; do                \
385           $(SHELL) $(UTILS_SRC)/ad2c "$$f" |                            \
386             sed 's/",$$/\\n"/' >> $$tmp ;                               \
387           echo ',' >> $$tmp ;                                           \
388         done ;                                                          \
389         mv $$tmp molecules.h
390
391 molecule:       molecule.o      sphere.o tube.o $(HACK_OBJS)
392         $(CC_HACK) -o $@ $@.o   sphere.o tube.o $(HACK_OBJS) $(HACK_LIBS)
393
394 dnalogo:        dnalogo.o       tube.o $(HACK_OBJS)
395         $(CC_HACK) -o $@ $@.o   tube.o $(HACK_OBJS) $(HACK_LIBS)
396
397 ##############################################################################
398 #
399 # DO NOT DELETE: updated by make distdepend
400 # $(srcdir)/DO $(srcdir)/NOT $(srcdir)/DELETE: $(srcdir)/updated $(srcdir)/by $(srcdir)/make $(srcdir)/distdepend
401
402 xscreensaver-gl-helper.o: ../../config.h
403 atlantis.o: ../../config.h
404 atlantis.o: $(srcdir)/atlantis.h
405 atlantis.o: $(srcdir)/xpm-ximage.h
406 atlantis.o: $(HACK_SRC)/images/sea-texture.xpm
407 b_draw.o: $(srcdir)/bubble3d.h
408 b_draw.o: ../../config.h
409 b_lockglue.o: $(srcdir)/bubble3d.h
410 b_lockglue.o: ../../config.h
411 b_sphere.o: $(srcdir)/bubble3d.h
412 b_sphere.o: ../../config.h
413 bubble3d.o: $(srcdir)/bubble3d.h
414 bubble3d.o: ../../config.h
415 buildlwo.o: $(srcdir)/buildlwo.h
416 cage.o: ../../config.h
417 cage.o: $(srcdir)/e_textures.h
418 dolphin.o: $(srcdir)/atlantis.h
419 gears.o: ../../config.h
420 lament.o: ../../config.h
421 lament.o: $(srcdir)/xpm-ximage.h
422 lament.o: $(HACK_SRC)/images/lament.xpm
423 moebius.o: ../../config.h
424 moebius.o: $(srcdir)/e_textures.h
425 morph3d.o: ../../config.h
426 pipeobjs.o: $(srcdir)/buildlwo.h
427 pipes.o: ../../config.h
428 pipes.o: $(srcdir)/buildlwo.h
429 rubik.o: ../../config.h
430 s1_1.o: $(srcdir)/buildlwo.h
431 s1_2.o: $(srcdir)/buildlwo.h
432 s1_3.o: $(srcdir)/buildlwo.h
433 s1_4.o: $(srcdir)/buildlwo.h
434 s1_5.o: $(srcdir)/buildlwo.h
435 s1_6.o: $(srcdir)/buildlwo.h
436 s1_b.o: $(srcdir)/buildlwo.h
437 shark.o: $(srcdir)/atlantis.h
438 sproingies.o: ../../config.h
439 sproingies.o: $(srcdir)/buildlwo.h
440 sproingiewrap.o: ../../config.h
441 stairs.o: ../../config.h
442 stairs.o: $(srcdir)/e_textures.h
443 superquadrics.o: ../../config.h
444 swim.o: ../../config.h
445 swim.o: $(srcdir)/atlantis.h
446 whale.o: $(srcdir)/atlantis.h
447 xlock-gl.o: ../../config.h
448 fps.o: ../../config.h
449 xpm-ximage.o: ../../config.h
450 glplanet.o: ../../config.h
451 glplanet.o: $(srcdir)/sphere.h
452 glplanet.o: $(HACK_SRC)/images/earth.xbm
453 glplanet.o: $(srcdir)/xpm-ximage.h
454 pulsar.o: ../../config.h
455 extrusion.o: ../../config.h
456 extrusion-helix2.o: ../../config.h
457 extrusion-helix3.o: ../../config.h
458 extrusion-helix4.o: ../../config.h
459 extrusion-joinoffset.o: ../../config.h
460 extrusion-screw.o: ../../config.h
461 extrusion-taper.o: ../../config.h
462 extrusion-twistoid.o: ../../config.h
463 sierpinski3d.o: ../../config.h
464 gflux.o: ../../config.h
465 gflux.o: $(srcdir)/grab-ximage.h
466 stonerview.o: ../../config.h
467 stonerview.o: $(srcdir)/stonerview-move.h
468 stonerview-move.o: ../../config.h
469 stonerview-move.o: $(srcdir)/stonerview-osc.h
470 stonerview-move.o: $(srcdir)/stonerview-move.h
471 stonerview-osc.o: ../../config.h
472 stonerview-osc.o: $(srcdir)/stonerview-osc.h
473 stonerview-view.o: ../../config.h
474 stonerview-view.o: $(srcdir)/stonerview-osc.h
475 stonerview-view.o: $(srcdir)/stonerview-move.h
476 starwars.o: ../../config.h
477 starwars.o: $(srcdir)/glutstroke.h
478 starwars.o: $(srcdir)/glut_roman.h
479 glut_stroke.o: ../../config.h
480 glut_stroke.o: $(srcdir)/glutstroke.h
481 glut_swidth.o: ../../config.h
482 glut_swidth.o: $(srcdir)/glutstroke.h
483 gltext.o: ../../config.h
484 gltext.o: $(srcdir)/tube.h
485 gltext.o: $(srcdir)/glutstroke.h
486 gltext.o: $(srcdir)/glut_roman.h
487 molecule.o: ../../config.h
488 molecule.o: $(srcdir)/sphere.h
489 molecule.o: $(srcdir)/tube.h
490 molecule.o: molecules.h
491 dangerball.o: ../../config.h
492 dangerball.o: $(srcdir)/sphere.h
493 dangerball.o: $(srcdir)/tube.h
494 sphere.o: ../../config.h
495 sphere.o: $(srcdir)/tube.h
496 tube.o: ../../config.h
497 tube.o: $(srcdir)/tube.h
498 circuit.o: ../../config.h
499 circuit.o: $(srcdir)/font-ximage.h
500 menger.o: ../../config.h
501 engine.o: ../../config.h
502 flipscreen3d.o: ../../config.h
503 flipscreen3d.o: $(srcdir)/grab-ximage.h
504 font-ximage.o: ../../config.h
505 grab-ximage.o: ../../config.h
506