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