http://ftp.x.org/contrib/applications/xscreensaver-3.10.tar.gz
[xscreensaver] / driver / Makefile.in
1 # driver/Makefile.in --- xscreensaver, Copyright (c) 1997 Jamie Zawinski.
2 # the `../configure' script generates `driver/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            = @DEFS@
23 DEFS2           = $(DEFS) -DDEFAULT_PATH_PREFIX='"@HACKDIR@"'
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 SUID_FLAGS      = -o root -m 4755
33 INSTALL_PROGRAM = @INSTALL_PROGRAM@
34 INSTALL_SETUID  = @INSTALL_SETUID@
35 INSTALL_DATA    = @INSTALL_DATA@
36 INSTALL_DIRS    = @INSTALL_DIRS@
37
38 X_CFLAGS        = @X_CFLAGS@
39 X_LIBS          = @X_LIBS@
40 X_PRE_LIBS      = @X_PRE_LIBS@
41 X_EXTRA_LIBS    = @X_EXTRA_LIBS@
42
43 # Note:
44 #
45 # X_LIBS would more properly be called X_LDFLAGS (it contains the -L args.)
46 # X_PRE_LIBS contains extra libraries you have to link against on some systems,
47 #         and that must come before -lX11.  (e.g., -lSM and -lICE.)
48 # X_EXTRA_LIBS contains extra libraries needed by X that aren't a part of X.
49 #         (e.g., -lsocket, -lnsl, etc.)
50 #
51 # I think (but am not totally sure) that LIBS is also really "LDFLAGS".
52 #
53 # SAVER_LIBS is the link line for "xscreensaver", and
54 # CMD_LIBS is the link line for "xscreensaver-command".
55
56
57 AD_DIR          = @APPDEFAULTS@
58 PAM_DIR         = /etc/pam.d
59 PAM_CONF        = /etc/pam.conf
60
61 UTILS_SRC       = $(srcdir)/../utils
62 UTILS_BIN       = ../utils
63
64 INCLUDES        = -I. -I$(srcdir) -I$(UTILS_SRC) -I.. @INCLUDES@
65
66 MOTIF_SRCS      = dialogs-Xm.c
67 MOTIF_OBJS      = dialogs-Xm.o
68
69 ATHENA_SRCS     = dialogs-Xaw.c
70 ATHENA_OBJS     = dialogs-Xaw.o
71
72 PWENT_SRCS      = passwd-pwent.c
73 PWENT_OBJS      = passwd-pwent.o
74
75 KERBEROS_SRCS   = passwd-kerberos.c
76 KERBEROS_OBJS   = passwd-kerberos.o
77
78 PAM_SRCS        = passwd-pam.c
79 PAM_OBJS        = passwd-pam.o
80
81 LOCK_SRCS_1     = lock.c passwd.c
82 LOCK_OBJS_1     = lock.o passwd.o
83
84 TEST_SRCS       = test-passwd.c test-uid.c test-xdpms.c test-grab.c
85
86 TOOLKIT_SRCS    = @TOOLKIT_SRCS@
87 TOOLKIT_OBJS    = @TOOLKIT_OBJS@
88 TOOLKIT_LIBS    = @TOOLKIT_LIBS@
89
90 PASSWD_SRCS     = @PASSWD_SRCS@
91 PASSWD_OBJS     = @PASSWD_OBJS@
92 PASSWD_LIBS     = @PASSWD_LIBS@
93
94 LOCK_SRCS       = @LOCK_SRCS@
95 LOCK_OBJS       = @LOCK_OBJS@
96
97 DEMO_UTIL_SRCS  = $(UTILS_SRC)/resources.c $(UTILS_SRC)/usleep.c \
98                   $(UTILS_SRC)/visual.c
99 DEMO_UTIL_OBJS  = $(UTILS_BIN)/resources.o $(UTILS_BIN)/usleep.o \
100                   $(UTILS_BIN)/visual.o
101
102 SAVER_UTIL_SRCS = $(UTILS_SRC)/fade.c $(UTILS_SRC)/overlay.c \
103                   $(UTILS_SRC)/xroger.c $(UTILS_SRC)/spline.c \
104                   $(UTILS_SRC)/yarandom.c \
105                   $(DEMO_UTIL_SRCS)
106 SAVER_UTIL_OBJS = $(UTILS_BIN)/fade.o $(UTILS_BIN)/overlay.o \
107                   $(UTILS_BIN)/xroger.o $(UTILS_BIN)/spline.o \
108                   $(UTILS_BIN)/yarandom.o \
109                   $(DEMO_UTIL_OBJS)
110
111 SAVER_SRCS_1    = xscreensaver.c windows.c timers.c subprocs.c \
112                   xset.c splash.c setuid.c stderr.c
113 SAVER_OBJS_1    = xscreensaver.o windows.o timers.o subprocs.o \
114                   xset.o splash.o setuid.o stderr.o
115
116 SAVER_SRCS      = $(SAVER_SRCS_1) prefs.c $(LOCK_SRCS) \
117                   $(SAVER_UTIL_SRCS) @XMU_SRCS@
118 SAVER_OBJS      = $(SAVER_OBJS_1) prefs.o $(LOCK_OBJS) \
119                   $(SAVER_UTIL_OBJS) @XMU_OBJS@
120
121 CMD_SRCS        = remote.c xscreensaver-command.c
122 CMD_OBJS        = remote.o xscreensaver-command.o
123
124 DEMO_SRCS_1     = demo.c prefs.c
125 DEMO_OBJS_1     = demo.o prefs.o
126
127 DEMO_SRCS       = $(DEMO_SRCS_1) remote.c \
128                   $(TOOLKIT_SRCS) $(DEMO_UTIL_SRCS)
129 DEMO_OBJS       = $(DEMO_OBJS_1) remote.o \
130                   $(TOOLKIT_OBJS) $(DEMO_UTIL_OBJS)
131
132 SAVER_LIBS      = $(LIBS) $(X_LIBS) @SAVER_LIBS@ \
133                   $(X_PRE_LIBS) -lXt -lX11 -lXext $(X_EXTRA_LIBS) \
134                   $(PASSWD_LIBS)
135
136 CMD_LIBS        = $(LIBS) $(X_LIBS) \
137                   $(X_PRE_LIBS) -lX11 -lXext $(X_EXTRA_LIBS)
138
139 DEMO_LIBS       = $(LIBS) $(X_LIBS) $(TOOLKIT_LIBS) \
140                   $(X_PRE_LIBS) -lXt -lX11 -lXext $(X_EXTRA_LIBS)
141
142 EXES            = xscreensaver xscreensaver-command xscreensaver-demo
143
144 HDRS            = XScreenSaver_ad.h xscreensaver.h prefs.h remote.h
145 MEN             = xscreensaver.man xscreensaver-demo.man \
146                   xscreensaver-command.man
147 EXTRAS          = README Makefile.in XScreenSaver.ad.in xscreensaver.pam \
148                   .gdbinit
149 VMSFILES        = compile_axp.com compile_decc.com link_axp.com link_decc.com \
150                   vms-getpwnam.c vms-pwd.h vms-hpwd.c vms-validate.c \
151                   vms_axp.opt vms_axp_12.opt vms_decc.opt vms_decc_12.opt
152
153 TARFILES        = $(EXTRAS) $(VMSFILES) $(SAVER_SRCS_1) \
154                   $(MOTIF_SRCS) $(ATHENA_SRCS) $(PWENT_SRCS) $(KERBEROS_SRCS) \
155                   $(PAM_SRCS) $(LOCK_SRCS_1) $(DEMO_SRCS_1) $(CMD_SRCS) \
156                   $(HDRS) $(TEST_SRCS) $(MEN)
157
158
159 all: $(EXES)
160
161 install:   install-program   install-ad   install-man   @INSTALL_PAM@
162 uninstall: uninstall-program uninstall-ad uninstall-man
163
164 install-strip:
165         $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' \
166                 INSTALL_SETUID='$(INSTALL_SETUID) -s' \
167                 install
168
169 install-program: $(EXES)
170         @if [ ! -d $(bindir) ]; then $(INSTALL_DIRS) $(bindir) ; fi
171         @inst="$(INSTALL_PROGRAM)" ;                                    \
172         if [ @NEED_SETUID@ = yes ]; then                                \
173            me="`whoami`" ;                                              \
174            if [ "$$me" = root ]; then                                   \
175              inst="$(INSTALL_SETUID)" ;                                 \
176            else                                                         \
177             e=echo ;                                                    \
178  $$e ""                                                                      ;\
179  $$e "  ####################################################################";\
180  $$e "  Warning: xscreensaver has been compiled with support for shadow"     ;\
181  $$e "           passwords.  If your system actually uses shadow passwords," ;\
182  $$e "           then xscreensaver must be installed as a setuid root"       ;\
183  $$e "           program in order for locking to work.  To do this, you"     ;\
184  $$e "           must run 'make install' as 'root', not as '$$me'."          ;\
185  $$e ""                                                                      ;\
186  $$e "           For now, xscreensaver will be installed non-setuid, which"  ;\
187  $$e "           means that locking might not work.  (Try it and see.)"      ;\
188  $$e "  ####################################################################";\
189  $$e ""                                                                      ;\
190            fi ;                                                         \
191         fi ;                                                            \
192         echo $$inst xscreensaver $(bindir)/xscreensaver ;               \
193         $$inst xscreensaver $(bindir)/xscreensaver
194         $(INSTALL_PROGRAM) xscreensaver-command $(bindir)/xscreensaver-command
195         $(INSTALL_PROGRAM) xscreensaver-demo $(bindir)/xscreensaver-demo
196
197 install-ad: XScreenSaver.ad
198         @if [ ! -d $(AD_DIR) ]; then $(INSTALL_DIRS) $(AD_DIR) ; fi
199         @-echo $(INSTALL_DATA) XScreenSaver.ad $(AD_DIR)/XScreenSaver ;       \
200         if $(INSTALL_DATA) XScreenSaver.ad $(AD_DIR)/XScreenSaver ; then      \
201           true ;                                                              \
202         else                                                                  \
203           e=echo ;                                                            \
204           if [ -f $(AD_DIR)/XScreenSaver ]; then                              \
205  $$e ""                                                                      ;\
206  $$e "  ####################################################################";\
207  $$e "  Warning: unable to install $(AD_DIR)/XScreenSaver"                   ;\
208  $$e "           That file exists, and is unwritable.  It is probably from"  ;\
209  $$e "           an older version of xscreensaver, and could cause things"   ;\
210  $$e "           to malfunction.  Please delete it!"                         ;\
211  $$e "  ####################################################################";\
212  $$e ""                                                                      ;\
213             exit 1 ;                                                          \
214           else                                                                \
215  $$e ""                                                                      ;\
216  $$e "  ####################################################################";\
217  $$e "  Warning: unable to install $(AD_DIR)/XScreenSaver"                   ;\
218  $$e "           The directory is unwritable.  This is probably ok;"         ;\
219  $$e "           xscreensaver should work without that file."                ;\
220  $$e "  ####################################################################";\
221  $$e ""                                                                      ;\
222             exit 0 ;                                                          \
223           fi                                                                  \
224         fi
225
226 install-man: $(MEN)
227         @men="$(MEN)" ;                                                 \
228         if [ ! -d $(man1dir) ]; then $(INSTALL_DIRS) $(man1dir) ; fi ;  \
229         for man in $$men; do                                            \
230           instname=`echo $$man | sed 's/\.man$$/\.$(mansuffix)/'` ;     \
231           echo $(INSTALL_DATA) $(srcdir)/$$man $(man1dir)/$$instname ;  \
232           $(INSTALL_DATA) $(srcdir)/$$man $(man1dir)/$$instname ;       \
233         done
234
235 uninstall-program:
236         @for program in $(EXES); do                                     \
237           echo rm -f $(bindir)/$$program ;                              \
238           rm -f $(bindir)/$$program ;                                   \
239         done
240
241 uninstall-ad:
242         rm -f $(AD_DIR)/XScreenSaver
243
244 uninstall-man:
245         @men="$(MEN)" ;                                                 \
246         for man in $$men; do                                            \
247           instname=`echo $$man | sed 's/\.man$$/\.$(mansuffix)/'` ;     \
248           echo rm -f $(man1dir)/$$instname ;                            \
249           rm -f $(man1dir)/$$instname ;                                 \
250         done
251
252 install-pam:
253         @src="$(srcdir)/xscreensaver.pam" ;                             \
254         dest=`sed -n 's/.*PAM_SERVICE_NAME[     ]*"\([^"]*\)".*$$/\1/p' \
255            < ../config.h` ;                                             \
256         dir="$(PAM_DIR)" ;                                              \
257         conf="$(PAM_CONF)" ;                                            \
258                                                                         \
259         if [ -d $$dir ] ; then                                          \
260           echo $(INSTALL_DATA) $$src $$dir/$$dest ;                     \
261           $(INSTALL_DATA) $$src $$dir/$$dest ;                          \
262           if [ ! -f $$dir/$$dest ]; then                                \
263             e=echo ;                                                    \
264  $$e ""                                                                      ;\
265  $$e "  ####################################################################";\
266  $$e "  Warning: xscreensaver has been compiled with support for Pluggable"  ;\
267  $$e "           Authentication Modules (PAM).  However, we were unable to"  ;\
268  $$e "           install the file $$dir/$$dest.  PAM is unlikely"            ;\
269  $$e "           to work without this file (and old-style password"          ;\
270  $$e "           authentication will be used instead, which may or may not"  ;\
271  $$e "           work.)"                                                     ;\
272  $$e "  ####################################################################";\
273  $$e ""                                                                      ;\
274           fi ;                                                          \
275         elif [ -f $$conf ]; then                                        \
276           if ( grep $$dest $$conf >/dev/null ); then                    \
277            true ;                                                       \
278           else                                                          \
279             e=echo ;                                                    \
280  $$e ""                                                                      ;\
281  $$e "  ####################################################################";\
282  $$e "  Warning: xscreensaver has been compiled with support for Pluggable"  ;\
283  $$e "           Authentication Modules (PAM).  To complete the installation";\
284  $$e "           of PAM support, you must add this to the file $$conf:"      ;\
285  $$e "  ####################################################################";\
286  $$e ""                                                                      ;\
287             cat $$src | grep -v '#%' | sed "s/^/        $$dest  /" ;    \
288             echo "";                                                    \
289           fi ;                                                          \
290         fi
291
292
293 clean:
294         -rm -f *.o a.out core $(EXES) XScreenSaver_ad.h
295
296 distclean: clean
297         -rm -f Makefile XScreenSaver.ad TAGS *~ "#"*
298
299 # Adds all current dependencies to Makefile
300 depend: XScreenSaver_ad.h
301         $(DEPEND) -s '# DO NOT DELETE: updated by make depend'              \
302         $(DEPEND_FLAGS) --                                                  \
303         $(INCLUDES) $(DEFS) $(DEPEND_DEFINES) $(CFLAGS) $(X_CFLAGS) --      \
304         $(SAVER_SRCS) $(CMD_SRCS)
305
306 # Adds some dependencies to Makefile.in -- not totally accurate, but pretty
307 # close.  This excludes dependencies on files in /usr/include, etc.  It tries
308 # to include only dependencies on files which are themselves a part of this
309 # package.
310 distdepend: update_ad_version update_man_version XScreenSaver_ad.h
311         @echo updating dependencies in `pwd`/Makefile.in... ;               \
312         $(DEPEND) -w 0 -f -                                                 \
313         -s '# DO NOT DELETE: updated by make distdepend' $(DEPEND_FLAGS) -- \
314         $(INCLUDES) $(DEFS) $(DEPEND_DEFINES) $(CFLAGS) $(X_CFLAGS) --      \
315         $(SAVER_SRCS_1) $(MOTIF_SRCS) $(ATHENA_SRCS) $(PWENT_SRCS)          \
316         $(LOCK_SRCS_1) $(DEMO_SRCS_1) $(CMD_SRCS) $(TEST_SRCS) |            \
317         (                                                                   \
318           awk '/^# .*Makefile.in ---/,/^# DO .*distdepend/' < Makefile.in ; \
319           sed -e 's@ \./@ @g;s@ /[^ ]*@@g;/^.*:$$/d'                        \
320               -e 's@\.\./utils@$$(UTILS_SRC)@g'                             \
321               -e 's@ \([^$$]\)@ $$(srcdir)/\1@g'                            \
322               -e 's@$$.*\(XScreenSaver_ad\)@\1@g'                           \
323               -e 's@ $$(srcdir)/\(.*config\.h\)@ \1@g' ;                    \
324           echo ''                                                           \
325         ) > /tmp/distdepend.$$$$ &&                                         \
326         mv Makefile.in Makefile.in.bak &&                                   \
327         mv /tmp/distdepend.$$$$ Makefile.in
328
329 # Updates the version number in the app-defaults file to be in sync with 
330 # the version number in version.h.  This is so people can tell when they
331 # have a version skew between the app-defaults file and the executable.
332 update_ad_version::
333         @S=XScreenSaver.ad.in ;                                             \
334         U=$(UTILS_SRC)/version.h ;                                          \
335         V=`sed -n 's/.*\([0-9][0-9]*\.[0-9]*\).*/\1/p' < $$U` ;             \
336         D=`date '+%d-%b-%y'` ;                                              \
337         echo -n "Updating version number in $$S to $$V $$D... " ;           \
338         T=/tmp/xs.$$$$ ;                                                    \
339         sed -e "s/\(.*version \)[0-9][0-9]*\.[0-9]*\(.*\)/\1$$V\2/"         \
340             -e "s/\([0-9][0-9]-[A-Z][a-z][a-z]-[0-9][0-9]\)/$$D/"           \
341           < $$S > $$T ;                                                     \
342         if cmp -s $$S $$T ; then                                            \
343           echo "unchanged." ;                                               \
344         else                                                                \
345           cat $$T > $$S ;                                                   \
346           echo "done." ;                                                    \
347         fi ;                                                                \
348         rm $$T
349
350 update_man_version::
351         @for S in $(MEN); do                                                \
352         U=$(UTILS_SRC)/version.h ;                                          \
353         V=`sed -n 's/.*\([0-9][0-9]*\.[0-9]*\).*/\1/p' < $$U` ;             \
354         V="`date '+%d-%b-%y'` ($$V)" ;                                      \
355         echo -n "Updating footer in $$S to \"$$V\"... " ;                   \
356         T=/tmp/xs.$$$$ ;                                                    \
357         sed "s/^\(\.TH[^\"]*\)\"[^\"]*\"\(.*\)/\1\"$$V\"\2/"                \
358           < $$S > $$T ;                                                     \
359         if cmp -s $$S $$T ; then                                            \
360           echo "unchanged." ;                                               \
361         else                                                                \
362           cat $$T > $$S ;                                                   \
363           echo "done." ;                                                    \
364         fi ;                                                                \
365         rm $$T ;                                                            \
366         done
367
368 TAGS: tags
369 tags:
370         find $(srcdir) -name '*.[chly]' -print | xargs etags -a
371
372 echo_tarfiles:
373         @$(MAKE) XScreenSaver_ad.h 2>&1 >&- /dev/null
374         @echo $(TARFILES)
375
376
377 # Rules for noticing when the objects from the utils directory are out of
378 # date with respect to their sources, and going and building them according
379 # to the rules in their own Makefile...
380 #
381 $(UTILS_BIN)/fade.o:            $(UTILS_SRC)/fade.c
382 $(UTILS_BIN)/overlay.o:         $(UTILS_SRC)/overlay.c
383 $(UTILS_BIN)/resources.o:       $(UTILS_SRC)/resources.c
384 $(UTILS_BIN)/usleep.o:          $(UTILS_SRC)/usleep.c
385 $(UTILS_BIN)/visual.o:          $(UTILS_SRC)/visual.c
386 $(UTILS_BIN)/xmu.o:             $(UTILS_SRC)/xmu.c
387 $(UTILS_BIN)/xroger.o:          $(UTILS_SRC)/xroger.c
388 $(UTILS_BIN)/spline.o:          $(UTILS_SRC)/spline.c
389 $(UTILS_BIN)/yarandom.o:        $(UTILS_SRC)/yarandom.c
390
391 $(SAVER_UTIL_OBJS):
392         cd $(UTILS_BIN) ; \
393         $(MAKE) $(@F) CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"
394
395 # How we build object files in this directory.
396 .c.o:
397         $(CC) -c $(INCLUDES) $(DEFS)  $(CFLAGS) $(X_CFLAGS) $<
398
399 # subprocs is the only one that takes an extra -D option.
400 subprocs.o: subprocs.c
401         $(CC) -c $(INCLUDES) $(DEFS2) $(CFLAGS) $(X_CFLAGS) $<
402
403
404 # How we build the default app-defaults file into the program.
405 #
406 XScreenSaver_ad.h: XScreenSaver.ad
407         $(SHELL) $(UTILS_SRC)/ad2c XScreenSaver.ad > XScreenSaver_ad.h
408
409 # The executables linked in this directory.
410 #
411 xscreensaver: $(SAVER_OBJS)
412         $(CC) $(LDFLAGS) -o $@ $(SAVER_OBJS) $(SAVER_LIBS)
413
414 xscreensaver-command: $(CMD_OBJS)
415         $(CC) $(LDFLAGS) -o $@ $(CMD_OBJS) $(CMD_LIBS)
416
417 xscreensaver-demo: $(DEMO_OBJS)
418         $(CC) $(LDFLAGS) -o $@ $(DEMO_OBJS) $(DEMO_LIBS)
419
420
421
422 TEST_PASSWD_OBJS = test-passwd.o $(LOCK_OBJS_1) $(PASSWD_OBJS) \
423          subprocs.o setuid.o splash.o prefs.o \
424         $(SAVER_UTIL_OBJS)
425 test-passwd.o: XScreenSaver_ad.h
426
427 test-passwd: $(TEST_PASSWD_OBJS) XScreenSaver_ad.h
428         $(CC) $(LDFLAGS) -o $@ $(TEST_PASSWD_OBJS) $(SAVER_LIBS)
429
430 test-uid: test-uid.o
431         $(CC) $(LDFLAGS) -o $@ test-uid.o
432
433 test-xdpms: test-xdpms.o
434         $(CC) $(LDFLAGS) -o $@ test-xdpms.o $(SAVER_LIBS)
435
436 test-grab: test-grab.o
437         $(CC) $(LDFLAGS) -o $@ test-grab.o $(SAVER_LIBS)
438
439
440 # This kludge is so that I can build/test the Athena version of the
441 # xscreensaver-demo program without having to re-run configure.
442 # Normally it builds it with Motif if possible; this lets me build
443 # both.
444 #
445 xscreensaver-demo-Xaw: $(ATHENA_OBJS) demo-Xaw.o $(DEMO_OBJS)
446         $(CC) $(LDFLAGS) -o $@ demo-Xaw.o prefs.o remote.o \
447                 $(ATHENA_OBJS) $(DEMO_UTIL_OBJS) \
448                 $(LIBS) $(X_LIBS) -lXaw \
449                 $(X_PRE_LIBS) -lXt -lX11 -lXext $(X_EXTRA_LIBS)
450 xscreensaver-demo-Xaw3d: $(ATHENA_OBJS) demo-Xaw.o $(DEMO_OBJS)
451         $(CC) $(LDFLAGS) -o $@ demo-Xaw.o prefs.o remote.o \
452                 $(ATHENA_OBJS) $(DEMO_UTIL_OBJS) \
453                 $(LIBS) $(X_LIBS) -lXaw3d \
454                 $(X_PRE_LIBS) -lXt -lX11 -lXext $(X_EXTRA_LIBS)
455 demo-Xaw.o: demo.c XScreenSaver_ad.h
456         $(CC) -o $@ -c -DHAVE_ATHENA_KLUDGE \
457         $(INCLUDES) $(DEFS2) $(CFLAGS) $(X_CFLAGS) $<
458
459
460
461 ##############################################################################
462 #
463 # DO NOT DELETE: updated by make distdepend
464 # $(srcdir)/DO $(srcdir)/NOT $(srcdir)/DELETE: $(srcdir)/updated $(srcdir)/by $(srcdir)/make $(srcdir)/distdepend
465
466 xscreensaver.o: ../config.h
467 xscreensaver.o: $(srcdir)/xscreensaver.h
468 xscreensaver.o: $(srcdir)/prefs.h
469 xscreensaver.o: $(UTILS_SRC)/version.h
470 xscreensaver.o: $(UTILS_SRC)/yarandom.h
471 xscreensaver.o: $(UTILS_SRC)/resources.h
472 xscreensaver.o: $(UTILS_SRC)/visual.h
473 xscreensaver.o: $(UTILS_SRC)/usleep.h
474 xscreensaver.o: XScreenSaver_ad.h
475 windows.o: ../config.h
476 windows.o: $(srcdir)/xscreensaver.h
477 windows.o: $(srcdir)/prefs.h
478 windows.o: $(UTILS_SRC)/visual.h
479 windows.o: $(UTILS_SRC)/fade.h
480 timers.o: ../config.h
481 timers.o: $(srcdir)/xscreensaver.h
482 timers.o: $(srcdir)/prefs.h
483 subprocs.o: ../config.h
484 subprocs.o: $(srcdir)/xscreensaver.h
485 subprocs.o: $(srcdir)/prefs.h
486 subprocs.o: $(UTILS_SRC)/yarandom.h
487 xset.o: ../config.h
488 xset.o: $(srcdir)/xscreensaver.h
489 xset.o: $(srcdir)/prefs.h
490 splash.o: ../config.h
491 splash.o: $(srcdir)/xscreensaver.h
492 splash.o: $(srcdir)/prefs.h
493 splash.o: $(UTILS_SRC)/resources.h
494 setuid.o: ../config.h
495 setuid.o: $(srcdir)/xscreensaver.h
496 setuid.o: $(srcdir)/prefs.h
497 stderr.o: ../config.h
498 stderr.o: $(srcdir)/xscreensaver.h
499 stderr.o: $(srcdir)/prefs.h
500 stderr.o: $(UTILS_SRC)/resources.h
501 stderr.o: $(UTILS_SRC)/visual.h
502 dialogs-Xm.o: ../config.h
503 dialogs-Xm.o: $(UTILS_SRC)/visual.h
504 dialogs-Xaw.o: ../config.h
505 dialogs-Xaw.o: $(UTILS_SRC)/visual.h
506 passwd-pwent.o: ../config.h
507 lock.o: ../config.h
508 lock.o: $(srcdir)/xscreensaver.h
509 lock.o: $(srcdir)/prefs.h
510 lock.o: $(UTILS_SRC)/resources.h
511 passwd.o: ../config.h
512 demo.o: ../config.h
513 demo.o: $(UTILS_SRC)/version.h
514 demo.o: $(srcdir)/prefs.h
515 demo.o: $(UTILS_SRC)/resources.h
516 demo.o: $(UTILS_SRC)/visual.h
517 demo.o: $(srcdir)/remote.h
518 demo.o: $(UTILS_SRC)/usleep.h
519 demo.o: XScreenSaver_ad.h
520 prefs.o: ../config.h
521 prefs.o: $(srcdir)/prefs.h
522 prefs.o: $(UTILS_SRC)/resources.h
523 remote.o: ../config.h
524 remote.o: $(srcdir)/remote.h
525 xscreensaver-command.o: ../config.h
526 xscreensaver-command.o: $(srcdir)/remote.h
527 xscreensaver-command.o: $(UTILS_SRC)/version.h
528 test-passwd.o: ../config.h
529 test-passwd.o: $(srcdir)/xscreensaver.h
530 test-passwd.o: $(srcdir)/prefs.h
531 test-passwd.o: $(UTILS_SRC)/resources.h
532 test-passwd.o: $(UTILS_SRC)/version.h
533 test-passwd.o: $(UTILS_SRC)/visual.h
534 test-passwd.o: XScreenSaver_ad.h
535 test-uid.o: ../config.h
536 test-xdpms.o: ../config.h
537 test-grab.o: ../config.h
538