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