From http://www.jwz.org/xscreensaver/xscreensaver-5.24.tar.gz
[xscreensaver] / Makefile.in
1 # Makefile.in --- xscreensaver, Copyright (c) 1999-2010 Jamie Zawinski.
2 # the `../configure' script generates `Makefile' from this file.
3
4 @SET_MAKE@
5 srcdir          = @srcdir@
6 VPATH           = @srcdir@
7
8 SHELL           = /bin/sh
9 SUBDIRS         = utils driver hacks hacks/glx po
10 #SUBDIRS        = utils driver hacks hacks/glx
11 SUBDIRS2        = $(SUBDIRS) OSX
12 TARFILES        = README README.hacking README.VMS INSTALL \
13                   configure configure.in Makefile.in config.h.in \
14                   config.h-vms install-sh setup.com config.guess aclocal.m4 \
15                   config.sub makevms.com \
16                   intltool-merge.in intltool-extract.in intltool-update.in \
17                   xscreensaver.spec \
18                   xscreensaver.xcodeproj/project.pbxproj
19
20 TAR             = tar
21
22 MAKE_SUBDIR  = for dir in $(SUBDIRS); do $(MAKE) -C $$dir $@ || exit 5; done
23 MAKE_SUBDIR2 = for dir in $(SUBDIRS2); do $(MAKE) -C $$dir $@ || exit 5; done
24
25 default::
26         @$(MAKE_SUBDIR)
27 all::
28         @$(MAKE_SUBDIR)
29 install::
30         @$(MAKE_SUBDIR)
31 install-program::
32         @$(MAKE_SUBDIR)
33 install-man::
34         @$(MAKE_SUBDIR)
35 install-strip::
36         @$(MAKE_SUBDIR)
37 uninstall::
38         @$(MAKE_SUBDIR)
39 uninstall-program::
40         @$(MAKE_SUBDIR)
41 uninstall-man::
42         @$(MAKE_SUBDIR)
43 depend::
44         @$(MAKE_SUBDIR)
45 distdepend::
46         @$(MAKE) update_spec_version
47         @$(MAKE_SUBDIR2)
48         @$(MAKE) -C po update-po
49
50 TAGS:: tags
51 tags::
52         @$(MAKE_SUBDIR)
53
54 clean::
55         @$(MAKE_SUBDIR2)
56
57 distclean:: clean
58         -rm -f config.h Makefile config.status config.cache config.log TAGS *~ "#"* intltool-extract intltool-merge intltool-update
59         @$(MAKE_SUBDIR2)
60
61 dist:: tar
62
63 # This really makes me sick...
64 tar::
65         @                                                                   \
66   sh config.status ;                                                        \
67   rm -f configure ;                                                         \
68   $(MAKE) configure ;                                                       \
69   $(MAKE) version-date distdepend ;                                         \
70   VERS=`sed -n 's/[^0-9]*\([0-9]\.[0-9][^. ]*\).*/\1/p' utils/version.h` ;  \
71   NAME="xscreensaver-$$VERS" ;                                              \
72   rm -rf $$NAME ; ln -s . $$NAME ;                                          \
73   FILES= ;                                                                  \
74   ADIR=archive/ ;                                                           \
75   for subdir in $(SUBDIRS2) ; do                                            \
76     d=`pwd` ;                                                               \
77     cd $$subdir ;                                                           \
78     FILES="$$FILES `$(MAKE) echo_tarfiles                                   \
79       | grep -v '^.*make\['                                                 \
80       | sed \"s|^|$$subdir/|g;s| | $$subdir/|g\"                            \
81       ` ";                                                                  \
82     cd $$d ; done ;                                                         \
83   echo creating tar file $$ADIR$$NAME.tar.gz... ;                           \
84   export COPYFILE_DISABLE=true ;                                            \
85   GZIP="-9v" $(TAR) -vczf $$ADIR$$NAME.tar.gz                               \
86     `echo $(TARFILES) $$FILES | sed "s|^|$$NAME/|g; s| | $$NAME/|g" ` ;     \
87   rm $$NAME
88
89
90 # This also makes me sick...
91 # autoconf generates a configure script that begins with a very hard to read,
92 # nearly impossible to customize --help blurb.  This horrid set of regexps
93 # go through and clean up the help text, by inserting whitespace and ripping
94 # out options we don't use.  Odds are good that this will fail with any version
95 # of autoconf other than the ones I've tried (2.12 and 2.13.)
96 #
97 configure::
98         autoconf
99         autoheader
100         @TMP=configure.$$$$ ;                                                \
101         echo "munging configure's --help message..." ;                       \
102         ( perl -e '                                                          \
103                 my $$file="";                                                \
104                 while (<>) { $$file .= $$_; }                                \
105                 $$_ = $$file;                                                \
106                                                                              \
107                 s/^(Configuration:)$$/\n$$1\n/m;                             \
108                 s/^(Directory and file names:)$$/\n$$1\n/m;                  \
109                 s/^  --sbindir=.*\n//m;                                      \
110                 s/^  --sysconfdir.*\n//m;                                    \
111                 s/^  --sharedstatedir.*\n.*\n//m;                            \
112                 s/^  --localstatedir.*\n//m;                                 \
113                 s/^  --infodir.*\n//m;                                       \
114                 s/^(Host type:)$$/\n$$1\n/m;                                 \
115                 s/\nFeatures and packages:\n.*library files are in DIR\n/\n/s;\
116                 s/--enable and --with options recognized://m;                \
117                 s/\n  --with-x .*?(["\n])/$$1/s;                             \
118                 s/\n(Installation options:\n)/$$1/s;                         \
119                                                                              \
120                 s/^  --oldincludedir=.*$$/ \
121  --x-includes=DIR        X include files are in DIR\n \
122  --x-libraries=DIR       X library files are in DIR/m; \
123                                                                              \
124                 s@mandir=.\$${prefix}/man.@mandir=\\\$${datadir}/man@;       \
125                                                                              \
126                 s@rm -f conftest@rm -rf conftest@g;                          \
127                                                                              \
128                 print;'                                                      \
129         < configure                                                          \
130         > $$TMP &&                                                           \
131         cat $$TMP > configure ) ;                                            \
132         rm -f $$TMP
133
134 bump-version::
135         @                                                                   \
136   SRC=utils/version.h ;                                                     \
137   VERS=`sed -n 's/[^0-9]*\([0-9]\)\.\([0-9][^. ]*\).*/\1 \2/p' $$SRC` ;     \
138   set - $$VERS ;                                                            \
139   MAJOR="$$1"; MINOR="$$2";                                                 \
140   NEW=`echo $$MINOR + 1 | bc` ;                                             \
141   NEW=`echo $$NEW | sed 's/^\([0-9]\)$$/0\1/'` ;                            \
142   D=`date '+%d-%b-%Y'`;                                                     \
143   ADIR=archive/ ;                                                           \
144   if [ ! -f $${ADIR}xscreensaver-$$MAJOR.$$MINOR.tar.gz ]; then             \
145    echo "WARNING: $${ADIR}xscreensaver-$$MAJOR.$$MINOR.tar.gz does not exist.";\
146   fi ;                                                                      \
147   if [ -f $${ADIR}xscreensaver-$$MAJOR.$$NEW.tar.gz ]; then                 \
148     echo "WARNING: $${ADIR}xscreensaver-$$MAJOR.$$NEW.tar.gz already exists.";\
149   fi ;                                                                      \
150   /bin/echo -n "Bumping $$MAJOR.$$MINOR to $$MAJOR.$$NEW ($$D), ok? ";      \
151   read line;                                                                \
152   if [ "x$$line" != "xyes" -a  "x$$line" != "xy" ]; then                    \
153     exit 1 ;                                                                \
154   fi ;                                                                      \
155   TMP=/tmp/bv.$$ ;                                                          \
156   sed -e "s/\([0-9]\.[0-9][0-9]*\)/$$MAJOR.$$NEW/"                          \
157       -e "s/\(([0-9][0-9]*-[A-Za-z][a-z][a-z]-[0-9][0-9][0-9]*\))/($$D)/"   \
158         $$SRC > $$TMP ;                                                     \
159   /bin/echo -n "New version and date are ";                                 \
160   sed -n "s/[^0-9]*\([0-9]\.[0-9][0-9]*\) (\([-A-Za-z0-9]*\)).*/\1, \2./p"  \
161      $$TMP;                                                                 \
162   cat $$TMP > $$SRC ;                                                       \
163   rm -f $$TMP;                                                              \
164   echo "overwrote $$SRC";                                                   \
165   ls -lFd $$SRC
166
167 bump_version:: bump-version
168 tick-version:: bump-version
169 tick_version:: bump-version
170
171 version-date::
172         @                                                                   \
173   SRC=utils/version.h ;                                                     \
174   D=`date '+%d-%b-%Y'`;                                                     \
175   TMP=/tmp/bv.$$ ;                                                          \
176   sed -e "s/([0-9][^()]*)/($$D)/" < $$SRC > $$TMP ;                         \
177   /bin/echo -n "Updating date in $$SRC to \"$$D\"... " ;                    \
178   if cmp -s $$SRC $$TMP ; then                                              \
179     echo "unchanged." ;                                                     \
180   else                                                                      \
181     cat $$TMP > $$SRC ;                                                     \
182     echo "done." ;                                                          \
183   fi ;                                                                      \
184   rm -f $$TMP
185
186
187 update_spec_version::
188         @S=$(srcdir)/xscreensaver.spec ;                                    \
189         U=$(srcdir)/utils/version.h ;                                       \
190         VERS=`sed -n 's/[^0-9]*\([0-9]\.[0-9][^. ]*\).*/\1/p' < $$U` ;      \
191         /bin/echo -n "Updating $$S to \"$$VERS\"... " ;                     \
192         T=/tmp/xs.$$$$ ;                                                    \
193         sed "s/^\(%define.version[^0-9]*\)\(.*\)/\1$$VERS/"                 \
194           < $$S > $$T ;                                                     \
195         if cmp -s $$S $$T ; then                                            \
196           echo "unchanged." ;                                               \
197         else                                                                \
198           cat $$T > $$S ;                                                   \
199           echo "done." ;                                                    \
200         fi ;                                                                \
201         rm $$T
202
203 rpm::
204         @                                                                  \
205   VERS=`sed -n 's/[^0-9]*\([0-9]\.[0-9][^. ]*\).*/\1/p' utils/version.h` ; \
206   DIR=`pwd`/rpm_build ;                                                    \
207   ARCH=`rpm --showrc | sed -n 's/^build arch *: //p'` ;                    \
208   ADIR=archive/ ;                                                          \
209   TGZ=xscreensaver-$$VERS.tar.gz ;                                         \
210   if [ ! -f $${ADIR}$$TGZ ]; then                                          \
211     echo "$${ADIR}$$TGZ does not exist!  Did you forget to \`make tar'?" ; \
212     exit 1 ;                                                               \
213   fi ;                                                                     \
214   rm -rf /var/tmp/xscreensaver-$$VERS-root ;                               \
215   rm -rf $$DIR ;                                                           \
216   mkdir $$DIR ;                                                            \
217   ( cd $$DIR; mkdir BUILD RPMS RPMS/$$ARCH SOURCES SPECS SRPMS ) ;         \
218   cp -p $${ADIR}$$TGZ $$DIR/SOURCES/ ;                                     \
219   rpmbuild --define "_topdir $$DIR"                                        \
220            --define "USE_GL yes"                                           \
221            -v -ba xscreensaver.spec ;                                      \
222   echo '' ;                                                                \
223   echo 'RPM build complete' ;                                              \
224   echo '' ;                                                                \
225   rm -f $$DIR/$$TGZ ;                                                      \
226   rm -rf $$DIR/BUILD/xscreensaver-$$VERS ;                                 \
227   mv $$DIR/SRPMS/xscreensaver*-$$VERS-*.rpm . ;                            \
228   mv $$DIR/RPMS/$$ARCH/xscreensaver*-$$VERS-*.rpm . ;                      \
229   rm -rf $$DIR ;                                                           \
230   echo '' ;                                                                \
231   ls -lFG xscreensaver*-$$VERS-*.rpm
232
233 test-tar::
234         @                                                                   \
235   VERS=`sed -n 's/[^0-9]*\([0-9]\.[0-9][^. ]*\).*/\1/p' utils/version.h` ;  \
236   D=xscreensaver-$$VERS ;                                                   \
237   ADIR=archive/ ;                                                           \
238   NAME="$${ADIR}$$D.tar.gz" ;                                               \
239   if [ ! -f $$NAME ]; then                                                  \
240     echo "$$NAME does not exist!  Did you forget to \`make tar'?" ;         \
241     exit 1 ;                                                                \
242   fi ;                                                                      \
243                                                                             \
244   set -e ;                                                                  \
245   set -x ;                                                                  \
246                                                                             \
247   if [ -d $$D ]; then                                                       \
248    chmod -R u+w $$D ;                                                       \
249   fi ;                                                                      \
250   rm -rf $$D ;                                                              \
251   zcat $${ADIR}$$D.tar.gz | tar -xf - ;                                     \
252   cd $$D ;                                                                  \
253   chmod -R a-w . ;                                                          \
254   chmod u+w . ;                                                             \
255   mkdir BIN ;                                                               \
256   mkdir BIN/motif ;                                                         \
257   mkdir BIN/lesstif ;                                                       \
258   chmod a-w . ;                                                             \
259                                                                             \
260   ( cd BIN/motif ;                                                          \
261     CC=cc ;                                                                 \
262     export CC ;                                                             \
263     ../../configure --without-xpm --without-xdbe --without-xshm             \
264                     --with-motif=/usr/local/motif ;                         \
265     echo --------------------------------------------------------------- ;  \
266     gmake all ;                                                             \
267     ( cd driver; gmake tests ) ;                                            \
268     echo --------------------------------------------------------------- ); \
269                                                                             \
270   ( cd BIN/lesstif ;                                                        \
271     CC=cc ;                                                                 \
272     export CC ;                                                             \
273     ../../configure --with-motif=/usr/local/lesstif --without-gnome ;       \
274     echo --------------------------------------------------------------- ;  \
275     ( cd utils; gmake all ) ;                                               \
276     ( cd driver; gmake all ) ;                                              \
277     echo --------------------------------------------------------------- ); \
278                                                                             \
279   chmod -R u+w .
280
281 dmg::
282         $(MAKE) -C OSX release dmg
283
284 www::
285         @                                                                   \
286   DEST=$$HOME/www/xscreensaver ;                                            \
287   VERS=`sed -n 's/[^0-9]*\([0-9]\.[0-9][^. ]*\).*/\1/p' utils/version.h` ;  \
288   HEAD="xscreensaver-$$VERS" ;                                              \
289   ADIR=archive/ ;                                                           \
290   BNAME="$$HEAD.tar.gz" ;                                                   \
291   NAME="$$ADIR$$BNAME" ;                                                    \
292   DNAME="$$DEST/$$HEAD.tar.gz" ;                                            \
293   BNAME2="$$HEAD.dmg" ;                                                     \
294   NAME2="$$ADIR$$BNAME2" ;                                                  \
295   DNAME2="$$DEST/$$HEAD.dmg" ;                                              \
296                                                                             \
297   if [ ! -f $$NAME ]; then                                                  \
298     echo "$$NAME does not exist!  Did you forget to \`make tar'?" ;         \
299     exit 1 ;                                                                \
300   fi ;                                                                      \
301   if [ ! -f $$NAME2 ]; then                                                 \
302     echo "$$NAME2 does not exist!  Did you forget to \`make dmg'?" ;        \
303     exit 1 ;                                                                \
304   fi ;                                                                      \
305   chmod a-w $$NAME ;                                                        \
306   if [ -f $$DNAME ]; then                                                   \
307     /bin/echo -n "WARNING: $$DNAME already exists!  Overwrite? ";           \
308     read line;                                                              \
309     if [ "x$$line" != "xyes" -a "x$$line" != "xy" ]; then                   \
310       exit 1 ;                                                              \
311     fi ;                                                                    \
312   fi ;                                                                      \
313   if [ -f $$DNAME2 ]; then                                                  \
314     /bin/echo -n "WARNING: $$DNAME2 already exists!  Overwrite? ";          \
315     read line;                                                              \
316     if [ "x$$line" != "xyes" -a "x$$line" != "xy" ]; then                   \
317       exit 1 ;                                                              \
318     fi ;                                                                    \
319   fi ;                                                                      \
320   cp -p $$NAME $$DNAME ;                                                    \
321   cp -p $$NAME2 $$DNAME2 ;                                                  \
322   chmod u+w $$DNAME $$DNAME2 ;                                              \
323   cd $$DEST ;                                                               \
324                                                                             \
325   TMP=/tmp/xd.$$$$ ;                                                        \
326   sed "s/xscreensaver-5\.[0-9][0-9ab]*/$$HEAD/g" download.html > $$TMP ;    \
327   echo '' ;                                                                 \
328   diff -U0 download.html $$TMP ;                                            \
329   echo '' ;                                                                 \
330                                                                             \
331   for EXT in tar.gz dmg ; do                                                \
332     OLDEST=`ls xscreensaver*.$$EXT |                                        \
333       fgrep -v 5.14 |                                                       \
334       head -n 1` ;                                                          \
335     /bin/echo -n "Delete $$DEST/$$OLDEST? ";                                \
336     read line;                                                              \
337     if [ "x$$line" = "xyes" -o "x$$line" = "xy" ]; then                     \
338       set -x ;                                                              \
339       rm $$OLDEST ;                                                         \
340       cvs remove $$OLDEST ;                                                 \
341       set +x ;                                                              \
342     fi ;                                                                    \
343   done ;                                                                    \
344   set -x ;                                                                  \
345   cvs add -kb $$BNAME $$BNAME2 ;                                            \
346   cat $$TMP > download.html ;                                               \
347   rm -f $$TMP ;                                                             \
348                                                                             \
349   $(MAKE) -C ../ xscreensaver/changelog.html xscreensaver/screenshots/index.html; \
350   cvs diff -U0 changelog.html ;                                             \
351   set +x ;                                                                  \
352                                                                             \
353   /bin/echo -n "Ok? ";                                                      \
354   read line;                                                                \
355   if [ "x$$line" != "xyes" -a "x$$line" != "xy" ]; then                     \
356     exit 1 ;                                                                \
357   fi ;                                                                      \
358                                                                             \
359   cvs commit -m "$$VERS"
360
361
362 count::
363         @ \
364   /bin/echo -n "Current hack count: " ; \
365   ( ( cd hacks;     make -s INSTALL=true install-program install-scripts ) ; \
366     ( cd hacks/glx; make -s INSTALL=true install-program ) ) | \
367     grep true | \
368     grep -v helper | \
369     grep -v ljlatest | \
370     wc -l