dcdfa94ec7c801da854fdaf618c4e798b83f9d1a
[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
42 # Note: see comment in ../../driver/Makefile.in for explanation of X_LIBS, etc.
43 #
44 HACK_PRE        = $(LIBS) $(X_LIBS)
45 HACK_POST       = $(X_PRE_LIBS) -lXt -lX11 -lXext $(X_EXTRA_LIBS) -lm
46 HACK_POST2      = @GL_LIBS@ @HACK_LIBS@ $(HACK_POST)
47 HACK_LIBS       = $(HACK_PRE)                       $(HACK_POST2)
48 XPM_LIBS        = $(HACK_PRE)            @XPM_LIBS@ $(HACK_POST2)
49 GLE_LIBS        = $(HACK_PRE) @GLE_LIBS@ @XPM_LIBS@ $(HACK_POST2)
50
51 HACK_SRC        = $(srcdir)/..
52 HACK_BIN        = ..
53 UTILS_SRC       = $(HACK_SRC)/../utils
54 UTILS_BIN       = $(HACK_BIN)/../utils
55
56 INCLUDES        = -I$(srcdir) -I$(UTILS_SRC) -I$(HACK_SRC) -I../.. @INCLUDES@
57
58 UTIL_SRCS       = $(UTILS_SRC)/colors.c $(UTILS_SRC)/hsv.c \
59                   $(UTILS_SRC)/resources.c $(UTILS_SRC)/usleep.c \
60                   $(UTILS_SRC)/visual.c $(UTILS_SRC)/visual-gl.c \
61                   $(UTILS_SRC)/yarandom.c
62 UTIL_OBJS       = $(UTILS_SRC)/colors.o $(UTILS_SRC)/hsv.o \
63                   $(UTILS_SRC)/resources.o $(UTILS_SRC)/usleep.o \
64                   $(UTILS_SRC)/visual.o $(UTILS_SRC)/visual-gl.o \
65                    $(UTILS_SRC)/yarandom.o
66
67 SRCS            = xscreensaver-gl-helper.c \
68                   atlantis.c b_draw.c b_lockglue.c b_sphere.c bubble3d.c \
69                   buildlwo.c cage.c dolphin.c gears.c lament.c moebius.c \
70                   morph3d.c pipeobjs.c pipes.c rubik.c s1_1.c s1_2.c s1_3.c \
71                   s1_4.c s1_5.c s1_6.c s1_b.c shark.c sproingies.c \
72                   sproingiewrap.c stairs.c superquadrics.c swim.c whale.c \
73                   xlock-gl.c xpm-ximage.c glplanet.c pulsar.c \
74                   extrusion.c extrusion-helix2.c extrusion-helix3.c \
75                   extrusion-helix4.c extrusion-joinoffset.c extrusion-screw.c \
76                   extrusion-taper.c extrusion-twistoid.c sierpinski3d.c gflux.c
77
78 OBJS            = xscreensaver-gl-helper.o \
79                   atlantis.o b_draw.o b_lockglue.o b_sphere.o bubble3d.o \
80                   buildlwo.o cage.o dolphin.o gears.o lament.o moebius.o \
81                   morph3d.o pipeobjs.o pipes.o rubik.o s1_1.o s1_2.o s1_3.o \
82                   s1_4.o s1_5.o s1_6.o s1_b.o shark.o sproingies.o \
83                   sproingiewrap.o stairs.o superquadrics.o swim.o whale.o \
84                   xlock-gl.o xpm-ximage.o glplanet.o pulsar.o \
85                   extrusion.o extrusion-helix2.o extrusion-helix3.o \
86                   extrusion-helix4.o extrusion-joinoffset.o extrusion-screw.o \
87                   extrusion-taper.o extrusion-twistoid.o sierpinski3d.o gflux.o
88
89 GL_EXES         = cage gears moebius pipes sproingies stairs superquadrics \
90                   morph3d rubik atlantis lament bubble3d glplanet pulsar \
91                   sierpinski3d gflux
92 GLE_EXES        = extrusion
93 UTIL_EXES       = xscreensaver-gl-helper
94 HACK_EXES       = @GL_EXES@ @GLE_EXES@
95 EXES            = $(HACK_EXES) $(UTIL_EXES)
96
97 HACK_OBJS       = screenhack-gl.o xlock-gl.o $(HACK_BIN)/xlockmore.o \
98                   $(UTILS_BIN)/resources.o $(UTILS_BIN)/visual.o \
99                   $(UTILS_BIN)/visual-gl.o $(UTILS_BIN)/usleep.o \
100                   $(UTILS_BIN)/yarandom.o $(UTILS_BIN)/hsv.o \
101                   $(UTILS_BIN)/colors.o
102
103 HDRS            = atlantis.h bubble3d.h buildlwo.h e_textures.h xpm-ximage.h
104 GL_MEN          = lament.man xscreensaver-gl-helper.man gflux.man
105 MEN             = @GL_MEN@
106 EXTRAS          = README Makefile.in
107
108 TARFILES        = $(SRCS) $(HDRS) $(MEN) $(EXTRAS)
109
110
111 default: all
112 all: $(EXES)
113
114 install:   install-program   install-man
115 uninstall: uninstall-program uninstall-man
116
117 install-strip:
118         $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
119
120 # the hacks, in $HACKDIR
121 install-program:: $(HACK_EXES)
122         @if [ ! -d $(install_prefix)$(HACKDIR) ]; then                  \
123           $(INSTALL_DIRS) $(install_prefix)$(HACKDIR) ;                 \
124          fi ;                                                           \
125         exes="$(HACK_EXES)" ;                                           \
126         for program in $$exes; do                                       \
127           echo $(INSTALL_PROGRAM) $$program                             \
128             $(install_prefix)$(HACKDIR)/$$program ;                     \
129           $(INSTALL_PROGRAM) $$program                                  \
130             $(install_prefix)$(HACKDIR)/$$program ;                     \
131         done
132
133 # the xscreensaver-gl-helper program, in $bindir
134 install-program:: $(UTIL_EXES)
135         @if [ ! -d $(install_prefix)$(bindir) ]; then                   \
136           $(INSTALL_DIRS) $(install_prefix)$(bindir) ;                  \
137          fi ;                                                           \
138         exes="$(UTIL_EXES)" ;                                           \
139         for program in $$exes; do                                       \
140           echo $(INSTALL_PROGRAM) $$program                             \
141             $(install_prefix)$(bindir)/$$program ;                      \
142           $(INSTALL_PROGRAM) $$program                                  \
143             $(install_prefix)$(bindir)/$$program ;                      \
144         done
145
146 install-man: $(MEN)
147         @men="$(MEN)" ;                                                 \
148         if [ ! -d $(install_prefix)$(man1dir) ]; then                   \
149           $(INSTALL_DIRS) $(install_prefix)$(man1dir) ;                 \
150          fi ;                                                           \
151         for man in $$men; do                                            \
152           instname=`echo $$man | sed 's/\.man$$/\.$(mansuffix)/'` ;     \
153           echo $(INSTALL_DATA) $(srcdir)/$$man                          \
154            $(install_prefix)$(man1dir)/$$instname ;                     \
155           $(INSTALL_DATA) $(srcdir)/$$man                               \
156             $(install_prefix)$(man1dir)/$$instname ;                    \
157         done
158
159 # the hacks, in $HACKDIR
160 uninstall-program::
161         @exes="$(HACK_EXES)" ;                                          \
162         for program in $$exes; do                                       \
163           echo rm -f $(install_prefix)$(HACKDIR)/$$program ;            \
164           rm -f $(install_prefix)$(HACKDIR)/$$program ;                 \
165         done
166
167 # the xscreensaver-gl-helper program, in $bindir
168 uninstall-program::
169         @exes="$(UTIL_EXES)" ;                                          \
170         for program in $$exes; do                                       \
171           echo rm -f $(install_prefix)$(bindir)/$$program ;             \
172           rm -f $(install_prefix)$(bindir)/$$program ;                  \
173         done
174
175 uninstall-man:
176         @men="$(MEN)" ;                                                 \
177         for man in $$men; do                                            \
178           instname=`echo $$man | sed 's/\.man$$/\.$(mansuffix)/'` ;     \
179           echo rm -f $(install_prefix)$(man1dir)/$$instname ;           \
180           rm -f $(install_prefix)$(man1dir)/$$instname ;                \
181         done
182
183 clean:
184         -rm -f *.o a.out core $(EXES)
185
186 distclean: clean
187         -rm -f Makefile TAGS *~ "#"*
188
189 # Adds all current dependencies to Makefile
190 depend:
191         $(DEPEND) -s '# DO NOT DELETE: updated by make depend'              \
192         $(DEPEND_FLAGS) --                                                  \
193         $(INCLUDES) $(DEFS) $(DEPEND_DEFINES) $(CFLAGS) $(X_CFLAGS) --      \
194         $(SRCS)
195
196 # Adds some dependencies to Makefile.in -- not totally accurate, but pretty
197 # close.  This excludes dependencies on files in /usr/include, etc.  It tries
198 # to include only dependencies on files which are themselves a part of this
199 # package.
200 distdepend::
201         @echo updating dependencies in `pwd`/Makefile.in... ;               \
202         $(DEPEND) -w 0 -f -                                                 \
203         -s '# DO NOT DELETE: updated by make distdepend' $(DEPEND_FLAGS) -- \
204         $(INCLUDES) $(DEFS) $(DEPEND_DEFINES) $(CFLAGS) $(X_CFLAGS) --      \
205         $(SRCS) |                                                           \
206         (                                                                   \
207           awk '/^# .*Makefile.in ---/,/^# DO .*distdepend/' < Makefile.in ; \
208           sed -e 's@ \./@ @g;s@ /[^ ]*@@g;/^.*:$$/d'                        \
209               -e 's@\.\./\.\./utils@$$(UTILS_SRC)@g'                        \
210               -e 's@\.\./glx/@@g'                                           \
211               -e 's@ \.\./@ $$(HACK_SRC)/@g'                                \
212               -e 's@ \([^$$]\)@ $$(srcdir)/\1@g'                            \
213               -e 's@ $$(srcdir)/\(.*config.h\)@ \1@g'                       \
214               -e 's@ $$(HACK_SRC)/\(.*config.h\)@ ../\1@g' ;                \
215           echo ''                                                           \
216         ) > /tmp/distdepend.$$$$ &&                                         \
217         mv Makefile.in Makefile.in.bak &&                                   \
218         mv /tmp/distdepend.$$$$ Makefile.in
219
220 TAGS: tags
221 tags:
222         find $(srcdir) -name '*.[chly]' -print | xargs etags -a
223
224 echo_tarfiles:
225         @echo $(TARFILES)
226
227
228 # Rules for noticing when the objects from the utils directory are out of
229 # date with respect to their sources, and going and building them according
230 # to the rules in their own Makefile...
231 #
232 $(UTILS_BIN)/colors.o:          $(UTILS_SRC)/colors.c
233 $(UTILS_BIN)/hsv.o:             $(UTILS_SRC)/hsv.c
234 $(UTILS_BIN)/resources.o:       $(UTILS_SRC)/resources.c
235 $(UTILS_BIN)/usleep.o:          $(UTILS_SRC)/usleep.c
236 $(UTILS_BIN)/visual.o:          $(UTILS_SRC)/visual.c
237 $(UTILS_BIN)/visual-gl.o:       $(UTILS_SRC)/visual-gl.c
238 $(UTILS_BIN)/yarandom.o:        $(UTILS_SRC)/yarandom.c
239
240 $(UTIL_OBJS):
241         cd $(UTILS_BIN) ; \
242         $(MAKE) $(@F) CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"
243
244 $(HACK_BIN)/xlockmore.o: $(HACK_SRC)/xlockmore.c
245         cd $(HACK_BIN)  ; $(MAKE) $(@F) CC="$(CC)" CFLAGS="$(CFLAGS)"
246
247
248 # How we build object files in this directory.
249 .c.o:
250         $(CC) -c $(INCLUDES) $(DEFS) $(CFLAGS) $(X_CFLAGS) $<
251
252
253 # How to build the "xscreensaver-gl-helper" program, that lets the daemon
254 # know which visual is the right one for GL programs.
255 #
256 HELPER_OBJS = xscreensaver-gl-helper.o $(UTILS_BIN)/visual-gl.o \
257               $(UTILS_BIN)/visual.o $(UTILS_BIN)/resources.o
258 xscreensaver-gl-helper: $(HELPER_OBJS)
259         $(CC) $(LDFLAGS) -o $@ $(HELPER_OBJS) $(LIBS) $(X_LIBS) $(HACK_POST2)
260
261
262 # These hacks use a slightly-differently-compiled variant of screenhack.c.
263 # This is how to make the the other .o file from it.
264 #
265 screenhack-gl.o: $(HACK_SRC)/screenhack.c
266         $(CC) -o $@ -c $(INCLUDES) $(DEFS) $(CFLAGS) $(X_CFLAGS) \
267           -DXLOCKMORE  -DUSE_GL $(HACK_SRC)/screenhack.c
268
269 CC_HACK         = $(CC) $(LDFLAGS)
270
271 atlantis:       atlantis.o      $(HACK_OBJS) dolphin.o shark.o swim.o whale.o
272         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) dolphin.o shark.o swim.o whale.o \
273                                 $(HACK_LIBS)
274
275 cage:           cage.o          $(HACK_OBJS)
276         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
277
278 gears:          gears.o         $(HACK_OBJS)
279         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
280
281 moebius:        moebius.o               $(HACK_OBJS)
282         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
283
284 pipes:          pipes.o         $(HACK_OBJS) pipeobjs.o buildlwo.o
285         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) pipeobjs.o buildlwo.o \
286           $(HACK_LIBS)
287
288 superquadrics:  superquadrics.o $(HACK_OBJS)
289         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
290
291 morph3d:        morph3d.o       $(HACK_OBJS)
292         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
293
294 rubik:          rubik.o $(HACK_OBJS)
295         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
296
297 stairs:         stairs.o        $(HACK_OBJS)
298         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
299
300 SPROINGIES = sproingiewrap.o buildlwo.o \
301              s1_1.o s1_2.o s1_3.o s1_4.o s1_5.o s1_6.o s1_b.o
302 sproingies: sproingies.o $(HACK_OBJS) $(SPROINGIES)
303         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(SPROINGIES) $(HACK_LIBS)
304
305 lament:         lament.o        $(HACK_OBJS) xpm-ximage.o
306         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) xpm-ximage.o $(XPM_LIBS)
307
308 B3D = b_sphere.o b_draw.o b_lockglue.o
309 bubble3d:       bubble3d.o      $(HACK_OBJS) $(B3D)
310         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(B3D) $(HACK_LIBS)
311
312 glplanet:       glplanet.o      $(HACK_OBJS) xpm-ximage.o
313         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) xpm-ximage.o $(XPM_LIBS)
314
315 pulsar:         pulsar.o        $(HACK_OBJS)
316         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
317
318 EXTRUSION_OBJS=extrusion.o extrusion-helix2.o extrusion-helix3.o    \
319         extrusion-helix4.o extrusion-joinoffset.o extrusion-screw.o \
320         extrusion-taper.o extrusion-twistoid.o
321 extrusion:      $(EXTRUSION_OBJS) $(HACK_OBJS)
322         $(CC_HACK) -o $@ $(EXTRUSION_OBJS) $(HACK_OBJS) $(GLE_LIBS)
323
324 sierpinski3d:   sierpinski3d.o  $(HACK_OBJS)
325         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
326
327 gflux:          gflux.o         $(HACK_OBJS)
328         $(CC_HACK) -o $@ $@.o   $(HACK_OBJS) $(HACK_LIBS)
329
330 ##############################################################################
331 #
332 # DO NOT DELETE: updated by make distdepend
333 # $(srcdir)/DO $(srcdir)/NOT $(srcdir)/DELETE: $(srcdir)/updated $(srcdir)/by $(srcdir)/make $(srcdir)/distdepend
334
335 xscreensaver-gl-helper.o: $(UTILS_SRC)/utils.h
336 xscreensaver-gl-helper.o: ../../config.h
337 xscreensaver-gl-helper.o: $(UTILS_SRC)/visual.h
338 atlantis.o: $(HACK_SRC)/xlockmore.h
339 atlantis.o: ../../config.h
340 atlantis.o: $(HACK_SRC)/xlockmoreI.h
341 atlantis.o: $(HACK_SRC)/screenhack.h
342 atlantis.o: $(UTILS_SRC)/yarandom.h
343 atlantis.o: $(UTILS_SRC)/usleep.h
344 atlantis.o: $(UTILS_SRC)/resources.h
345 atlantis.o: $(UTILS_SRC)/hsv.h
346 atlantis.o: $(UTILS_SRC)/colors.h
347 atlantis.o: $(UTILS_SRC)/grabscreen.h
348 atlantis.o: $(UTILS_SRC)/visual.h
349 atlantis.o: $(UTILS_SRC)/xshm.h
350 atlantis.o: $(srcdir)/atlantis.h
351 b_draw.o: $(srcdir)/bubble3d.h
352 b_draw.o: $(HACK_SRC)/xlockmoreI.h
353 b_draw.o: $(HACK_SRC)/screenhack.h
354 b_draw.o: ../../config.h
355 b_draw.o: $(UTILS_SRC)/yarandom.h
356 b_draw.o: $(UTILS_SRC)/usleep.h
357 b_draw.o: $(UTILS_SRC)/resources.h
358 b_draw.o: $(UTILS_SRC)/hsv.h
359 b_draw.o: $(UTILS_SRC)/colors.h
360 b_draw.o: $(UTILS_SRC)/grabscreen.h
361 b_draw.o: $(UTILS_SRC)/visual.h
362 b_draw.o: $(UTILS_SRC)/xshm.h
363 b_lockglue.o: $(srcdir)/bubble3d.h
364 b_lockglue.o: $(HACK_SRC)/xlockmoreI.h
365 b_lockglue.o: $(HACK_SRC)/screenhack.h
366 b_lockglue.o: ../../config.h
367 b_lockglue.o: $(UTILS_SRC)/yarandom.h
368 b_lockglue.o: $(UTILS_SRC)/usleep.h
369 b_lockglue.o: $(UTILS_SRC)/resources.h
370 b_lockglue.o: $(UTILS_SRC)/hsv.h
371 b_lockglue.o: $(UTILS_SRC)/colors.h
372 b_lockglue.o: $(UTILS_SRC)/grabscreen.h
373 b_lockglue.o: $(UTILS_SRC)/visual.h
374 b_lockglue.o: $(UTILS_SRC)/xshm.h
375 b_lockglue.o: $(HACK_SRC)/xlockmore.h
376 b_sphere.o: $(srcdir)/bubble3d.h
377 b_sphere.o: $(HACK_SRC)/xlockmoreI.h
378 b_sphere.o: $(HACK_SRC)/screenhack.h
379 b_sphere.o: ../../config.h
380 b_sphere.o: $(UTILS_SRC)/yarandom.h
381 b_sphere.o: $(UTILS_SRC)/usleep.h
382 b_sphere.o: $(UTILS_SRC)/resources.h
383 b_sphere.o: $(UTILS_SRC)/hsv.h
384 b_sphere.o: $(UTILS_SRC)/colors.h
385 b_sphere.o: $(UTILS_SRC)/grabscreen.h
386 b_sphere.o: $(UTILS_SRC)/visual.h
387 b_sphere.o: $(UTILS_SRC)/xshm.h
388 bubble3d.o: $(srcdir)/bubble3d.h
389 bubble3d.o: $(HACK_SRC)/xlockmoreI.h
390 bubble3d.o: $(HACK_SRC)/screenhack.h
391 bubble3d.o: ../../config.h
392 bubble3d.o: $(UTILS_SRC)/yarandom.h
393 bubble3d.o: $(UTILS_SRC)/usleep.h
394 bubble3d.o: $(UTILS_SRC)/resources.h
395 bubble3d.o: $(UTILS_SRC)/hsv.h
396 bubble3d.o: $(UTILS_SRC)/colors.h
397 bubble3d.o: $(UTILS_SRC)/grabscreen.h
398 bubble3d.o: $(UTILS_SRC)/visual.h
399 bubble3d.o: $(UTILS_SRC)/xshm.h
400 buildlwo.o: $(srcdir)/buildlwo.h
401 cage.o: $(HACK_SRC)/xlockmore.h
402 cage.o: ../../config.h
403 cage.o: $(HACK_SRC)/xlockmoreI.h
404 cage.o: $(HACK_SRC)/screenhack.h
405 cage.o: $(UTILS_SRC)/yarandom.h
406 cage.o: $(UTILS_SRC)/usleep.h
407 cage.o: $(UTILS_SRC)/resources.h
408 cage.o: $(UTILS_SRC)/hsv.h
409 cage.o: $(UTILS_SRC)/colors.h
410 cage.o: $(UTILS_SRC)/grabscreen.h
411 cage.o: $(UTILS_SRC)/visual.h
412 cage.o: $(UTILS_SRC)/xshm.h
413 cage.o: $(srcdir)/e_textures.h
414 dolphin.o: $(srcdir)/atlantis.h
415 gears.o: $(HACK_SRC)/xlockmore.h
416 gears.o: ../../config.h
417 gears.o: $(HACK_SRC)/xlockmoreI.h
418 gears.o: $(HACK_SRC)/screenhack.h
419 gears.o: $(UTILS_SRC)/yarandom.h
420 gears.o: $(UTILS_SRC)/usleep.h
421 gears.o: $(UTILS_SRC)/resources.h
422 gears.o: $(UTILS_SRC)/hsv.h
423 gears.o: $(UTILS_SRC)/colors.h
424 gears.o: $(UTILS_SRC)/grabscreen.h
425 gears.o: $(UTILS_SRC)/visual.h
426 gears.o: $(UTILS_SRC)/xshm.h
427 lament.o: $(HACK_SRC)/xlockmore.h
428 lament.o: ../../config.h
429 lament.o: $(HACK_SRC)/xlockmoreI.h
430 lament.o: $(HACK_SRC)/screenhack.h
431 lament.o: $(UTILS_SRC)/yarandom.h
432 lament.o: $(UTILS_SRC)/usleep.h
433 lament.o: $(UTILS_SRC)/resources.h
434 lament.o: $(UTILS_SRC)/hsv.h
435 lament.o: $(UTILS_SRC)/colors.h
436 lament.o: $(UTILS_SRC)/grabscreen.h
437 lament.o: $(UTILS_SRC)/visual.h
438 lament.o: $(UTILS_SRC)/xshm.h
439 lament.o: $(srcdir)/xpm-ximage.h
440 lament.o: $(HACK_SRC)/images/lament.xpm
441 moebius.o: $(HACK_SRC)/xlockmore.h
442 moebius.o: ../../config.h
443 moebius.o: $(HACK_SRC)/xlockmoreI.h
444 moebius.o: $(HACK_SRC)/screenhack.h
445 moebius.o: $(UTILS_SRC)/yarandom.h
446 moebius.o: $(UTILS_SRC)/usleep.h
447 moebius.o: $(UTILS_SRC)/resources.h
448 moebius.o: $(UTILS_SRC)/hsv.h
449 moebius.o: $(UTILS_SRC)/colors.h
450 moebius.o: $(UTILS_SRC)/grabscreen.h
451 moebius.o: $(UTILS_SRC)/visual.h
452 moebius.o: $(UTILS_SRC)/xshm.h
453 moebius.o: $(srcdir)/e_textures.h
454 morph3d.o: $(HACK_SRC)/xlockmore.h
455 morph3d.o: ../../config.h
456 morph3d.o: $(HACK_SRC)/xlockmoreI.h
457 morph3d.o: $(HACK_SRC)/screenhack.h
458 morph3d.o: $(UTILS_SRC)/yarandom.h
459 morph3d.o: $(UTILS_SRC)/usleep.h
460 morph3d.o: $(UTILS_SRC)/resources.h
461 morph3d.o: $(UTILS_SRC)/hsv.h
462 morph3d.o: $(UTILS_SRC)/colors.h
463 morph3d.o: $(UTILS_SRC)/grabscreen.h
464 morph3d.o: $(UTILS_SRC)/visual.h
465 morph3d.o: $(UTILS_SRC)/xshm.h
466 pipeobjs.o: $(srcdir)/buildlwo.h
467 pipes.o: $(HACK_SRC)/xlockmore.h
468 pipes.o: ../../config.h
469 pipes.o: $(HACK_SRC)/xlockmoreI.h
470 pipes.o: $(HACK_SRC)/screenhack.h
471 pipes.o: $(UTILS_SRC)/yarandom.h
472 pipes.o: $(UTILS_SRC)/usleep.h
473 pipes.o: $(UTILS_SRC)/resources.h
474 pipes.o: $(UTILS_SRC)/hsv.h
475 pipes.o: $(UTILS_SRC)/colors.h
476 pipes.o: $(UTILS_SRC)/grabscreen.h
477 pipes.o: $(UTILS_SRC)/visual.h
478 pipes.o: $(UTILS_SRC)/xshm.h
479 pipes.o: $(srcdir)/buildlwo.h
480 rubik.o: $(HACK_SRC)/xlockmore.h
481 rubik.o: ../../config.h
482 rubik.o: $(HACK_SRC)/xlockmoreI.h
483 rubik.o: $(HACK_SRC)/screenhack.h
484 rubik.o: $(UTILS_SRC)/yarandom.h
485 rubik.o: $(UTILS_SRC)/usleep.h
486 rubik.o: $(UTILS_SRC)/resources.h
487 rubik.o: $(UTILS_SRC)/hsv.h
488 rubik.o: $(UTILS_SRC)/colors.h
489 rubik.o: $(UTILS_SRC)/grabscreen.h
490 rubik.o: $(UTILS_SRC)/visual.h
491 rubik.o: $(UTILS_SRC)/xshm.h
492 s1_1.o: $(srcdir)/buildlwo.h
493 s1_2.o: $(srcdir)/buildlwo.h
494 s1_3.o: $(srcdir)/buildlwo.h
495 s1_4.o: $(srcdir)/buildlwo.h
496 s1_5.o: $(srcdir)/buildlwo.h
497 s1_6.o: $(srcdir)/buildlwo.h
498 s1_b.o: $(srcdir)/buildlwo.h
499 shark.o: $(srcdir)/atlantis.h
500 sproingies.o: $(HACK_SRC)/xlockmoreI.h
501 sproingies.o: $(HACK_SRC)/screenhack.h
502 sproingies.o: ../../config.h
503 sproingies.o: $(UTILS_SRC)/yarandom.h
504 sproingies.o: $(UTILS_SRC)/usleep.h
505 sproingies.o: $(UTILS_SRC)/resources.h
506 sproingies.o: $(UTILS_SRC)/hsv.h
507 sproingies.o: $(UTILS_SRC)/colors.h
508 sproingies.o: $(UTILS_SRC)/grabscreen.h
509 sproingies.o: $(UTILS_SRC)/visual.h
510 sproingies.o: $(UTILS_SRC)/xshm.h
511 sproingies.o: $(srcdir)/buildlwo.h
512 sproingiewrap.o: $(HACK_SRC)/xlockmore.h
513 sproingiewrap.o: ../../config.h
514 sproingiewrap.o: $(HACK_SRC)/xlockmoreI.h
515 sproingiewrap.o: $(HACK_SRC)/screenhack.h
516 sproingiewrap.o: $(UTILS_SRC)/yarandom.h
517 sproingiewrap.o: $(UTILS_SRC)/usleep.h
518 sproingiewrap.o: $(UTILS_SRC)/resources.h
519 sproingiewrap.o: $(UTILS_SRC)/hsv.h
520 sproingiewrap.o: $(UTILS_SRC)/colors.h
521 sproingiewrap.o: $(UTILS_SRC)/grabscreen.h
522 sproingiewrap.o: $(UTILS_SRC)/visual.h
523 sproingiewrap.o: $(UTILS_SRC)/xshm.h
524 stairs.o: $(HACK_SRC)/xlockmore.h
525 stairs.o: ../../config.h
526 stairs.o: $(HACK_SRC)/xlockmoreI.h
527 stairs.o: $(HACK_SRC)/screenhack.h
528 stairs.o: $(UTILS_SRC)/yarandom.h
529 stairs.o: $(UTILS_SRC)/usleep.h
530 stairs.o: $(UTILS_SRC)/resources.h
531 stairs.o: $(UTILS_SRC)/hsv.h
532 stairs.o: $(UTILS_SRC)/colors.h
533 stairs.o: $(UTILS_SRC)/grabscreen.h
534 stairs.o: $(UTILS_SRC)/visual.h
535 stairs.o: $(UTILS_SRC)/xshm.h
536 stairs.o: $(srcdir)/e_textures.h
537 superquadrics.o: $(HACK_SRC)/xlockmore.h
538 superquadrics.o: ../../config.h
539 superquadrics.o: $(HACK_SRC)/xlockmoreI.h
540 superquadrics.o: $(HACK_SRC)/screenhack.h
541 superquadrics.o: $(UTILS_SRC)/yarandom.h
542 superquadrics.o: $(UTILS_SRC)/usleep.h
543 superquadrics.o: $(UTILS_SRC)/resources.h
544 superquadrics.o: $(UTILS_SRC)/hsv.h
545 superquadrics.o: $(UTILS_SRC)/colors.h
546 superquadrics.o: $(UTILS_SRC)/grabscreen.h
547 superquadrics.o: $(UTILS_SRC)/visual.h
548 superquadrics.o: $(UTILS_SRC)/xshm.h
549 swim.o: $(HACK_SRC)/xlockmoreI.h
550 swim.o: $(HACK_SRC)/screenhack.h
551 swim.o: ../../config.h
552 swim.o: $(UTILS_SRC)/yarandom.h
553 swim.o: $(UTILS_SRC)/usleep.h
554 swim.o: $(UTILS_SRC)/resources.h
555 swim.o: $(UTILS_SRC)/hsv.h
556 swim.o: $(UTILS_SRC)/colors.h
557 swim.o: $(UTILS_SRC)/grabscreen.h
558 swim.o: $(UTILS_SRC)/visual.h
559 swim.o: $(UTILS_SRC)/xshm.h
560 swim.o: $(srcdir)/atlantis.h
561 whale.o: $(srcdir)/atlantis.h
562 xlock-gl.o: $(HACK_SRC)/screenhack.h
563 xlock-gl.o: ../../config.h
564 xlock-gl.o: $(UTILS_SRC)/yarandom.h
565 xlock-gl.o: $(UTILS_SRC)/usleep.h
566 xlock-gl.o: $(UTILS_SRC)/resources.h
567 xlock-gl.o: $(UTILS_SRC)/hsv.h
568 xlock-gl.o: $(UTILS_SRC)/colors.h
569 xlock-gl.o: $(UTILS_SRC)/grabscreen.h
570 xlock-gl.o: $(UTILS_SRC)/visual.h
571 xlock-gl.o: $(HACK_SRC)/xlockmoreI.h
572 xlock-gl.o: $(UTILS_SRC)/xshm.h
573 xpm-ximage.o: ../../config.h
574 glplanet.o: $(HACK_SRC)/xlockmore.h
575 glplanet.o: ../../config.h
576 glplanet.o: $(HACK_SRC)/xlockmoreI.h
577 glplanet.o: $(HACK_SRC)/screenhack.h
578 glplanet.o: $(UTILS_SRC)/yarandom.h
579 glplanet.o: $(UTILS_SRC)/usleep.h
580 glplanet.o: $(UTILS_SRC)/resources.h
581 glplanet.o: $(UTILS_SRC)/hsv.h
582 glplanet.o: $(UTILS_SRC)/colors.h
583 glplanet.o: $(UTILS_SRC)/grabscreen.h
584 glplanet.o: $(UTILS_SRC)/visual.h
585 glplanet.o: $(UTILS_SRC)/xshm.h
586 glplanet.o: $(HACK_SRC)/images/earth.xbm
587 glplanet.o: $(srcdir)/xpm-ximage.h
588 pulsar.o: $(HACK_SRC)/xlockmore.h
589 pulsar.o: ../../config.h
590 pulsar.o: $(HACK_SRC)/xlockmoreI.h
591 pulsar.o: $(HACK_SRC)/screenhack.h
592 pulsar.o: $(UTILS_SRC)/yarandom.h
593 pulsar.o: $(UTILS_SRC)/usleep.h
594 pulsar.o: $(UTILS_SRC)/resources.h
595 pulsar.o: $(UTILS_SRC)/hsv.h
596 pulsar.o: $(UTILS_SRC)/colors.h
597 pulsar.o: $(UTILS_SRC)/grabscreen.h
598 pulsar.o: $(UTILS_SRC)/visual.h
599 pulsar.o: $(UTILS_SRC)/xshm.h
600 extrusion.o: ../../config.h
601 extrusion.o: $(HACK_SRC)/xlockmore.h
602 extrusion.o: $(HACK_SRC)/xlockmoreI.h
603 extrusion.o: $(HACK_SRC)/screenhack.h
604 extrusion.o: $(UTILS_SRC)/yarandom.h
605 extrusion.o: $(UTILS_SRC)/usleep.h
606 extrusion.o: $(UTILS_SRC)/resources.h
607 extrusion.o: $(UTILS_SRC)/hsv.h
608 extrusion.o: $(UTILS_SRC)/colors.h
609 extrusion.o: $(UTILS_SRC)/grabscreen.h
610 extrusion.o: $(UTILS_SRC)/visual.h
611 extrusion.o: $(UTILS_SRC)/xshm.h
612 extrusion-helix2.o: ../../config.h
613 extrusion-helix3.o: ../../config.h
614 extrusion-helix4.o: ../../config.h
615 extrusion-joinoffset.o: ../../config.h
616 extrusion-screw.o: ../../config.h
617 extrusion-taper.o: ../../config.h
618 extrusion-twistoid.o: ../../config.h
619 sierpinski3d.o: $(HACK_SRC)/xlockmore.h
620 sierpinski3d.o: ../../config.h
621 sierpinski3d.o: $(HACK_SRC)/xlockmoreI.h
622 sierpinski3d.o: $(HACK_SRC)/screenhack.h
623 sierpinski3d.o: $(UTILS_SRC)/yarandom.h
624 sierpinski3d.o: $(UTILS_SRC)/usleep.h
625 sierpinski3d.o: $(UTILS_SRC)/resources.h
626 sierpinski3d.o: $(UTILS_SRC)/hsv.h
627 sierpinski3d.o: $(UTILS_SRC)/colors.h
628 sierpinski3d.o: $(UTILS_SRC)/grabscreen.h
629 sierpinski3d.o: $(UTILS_SRC)/visual.h
630 sierpinski3d.o: $(UTILS_SRC)/xshm.h
631 gflux.o: $(HACK_SRC)/xlockmore.h
632 gflux.o: ../../config.h
633 gflux.o: $(HACK_SRC)/xlockmoreI.h
634 gflux.o: $(HACK_SRC)/screenhack.h
635 gflux.o: $(UTILS_SRC)/yarandom.h
636 gflux.o: $(UTILS_SRC)/usleep.h
637 gflux.o: $(UTILS_SRC)/resources.h
638 gflux.o: $(UTILS_SRC)/hsv.h
639 gflux.o: $(UTILS_SRC)/colors.h
640 gflux.o: $(UTILS_SRC)/grabscreen.h
641 gflux.o: $(UTILS_SRC)/visual.h
642 gflux.o: $(UTILS_SRC)/xshm.h
643