1 # Makefile.in --- xscreensaver, Copyright (c) 1999-2010 Jamie Zawinski.
2 # the `../configure' script generates `Makefile' from this file.
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 \
18 xscreensaver.xcodeproj/project.pbxproj
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
46 @$(MAKE) update_spec_version
48 @$(MAKE) -C po update-po
58 -rm -f config.h Makefile config.status config.cache config.log TAGS *~ "#"* intltool-extract intltool-merge intltool-update
63 # This really makes me sick...
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 ; \
75 for subdir in $(SUBDIRS2) ; do \
78 FILES="$$FILES `$(MAKE) echo_tarfiles \
79 | grep -v '^.*make\[' \
80 | sed \"s|^|$$subdir/|g;s| | $$subdir/|g\" \
83 echo creating tar file $$ADIR$$NAME.tar.gz... ; \
84 export COPYFILE_DISABLE=true ; \
85 GZIP="-9v" $(TAR) -vchzf $$ADIR$$NAME.tar.gz \
86 `echo $(TARFILES) $$FILES | sed "s|^|$$NAME/|g; s| | $$NAME/|g" ` ; \
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.)
97 # NOTE: we now require autoconf 2.63 or earlier, because later versions have
98 # the "Expanded-Before-Required" change and I can't make any sense of it.
99 # If someone wants to send me a patch to make configure.in work with 2.64
100 # or later, feel free. Personally, I can't be bothered.
105 @TMP=configure.$$$$ ; \
106 echo "munging configure's --help message..." ; \
109 while (<>) { $$file .= $$_; } \
112 s/^(Configuration:)$$/\n$$1\n/m; \
113 s/^(Directory and file names:)$$/\n$$1\n/m; \
114 s/^ --sbindir=.*\n//m; \
115 s/^ --sysconfdir.*\n//m; \
116 s/^ --sharedstatedir.*\n.*\n//m; \
117 s/^ --localstatedir.*\n//m; \
118 s/^ --infodir.*\n//m; \
119 s/^(Host type:)$$/\n$$1\n/m; \
120 s/\nFeatures and packages:\n.*library files are in DIR\n/\n/s;\
121 s/--enable and --with options recognized://m; \
122 s/\n --with-x .*?(["\n])/$$1/s; \
123 s/\n(Installation options:\n)/$$1/s; \
125 s/^ --oldincludedir=.*$$/ \
126 --x-includes=DIR X include files are in DIR\n \
127 --x-libraries=DIR X library files are in DIR/m; \
129 s@mandir=.\$${prefix}/man.@mandir=\\\$${datadir}/man@; \
131 s@rm -f conftest@rm -rf conftest@g; \
136 cat $$TMP > configure ) ; \
141 SRC=utils/version.h ; \
142 VERS=`sed -n 's/[^0-9]*\([0-9]\)\.\([0-9][^. ]*\).*/\1 \2/p' $$SRC` ; \
144 MAJOR="$$1"; MINOR="$$2"; \
145 NEW=`echo $$MINOR + 1 | bc` ; \
146 NEW=`echo $$NEW | sed 's/^\([0-9]\)$$/0\1/'` ; \
147 D=`date '+%d-%b-%Y'`; \
149 if [ ! -f $${ADIR}xscreensaver-$$MAJOR.$$MINOR.tar.gz ]; then \
150 echo "WARNING: $${ADIR}xscreensaver-$$MAJOR.$$MINOR.tar.gz does not exist.";\
152 if [ -f $${ADIR}xscreensaver-$$MAJOR.$$NEW.tar.gz ]; then \
153 echo "WARNING: $${ADIR}xscreensaver-$$MAJOR.$$NEW.tar.gz already exists.";\
155 /bin/echo -n "Bumping $$MAJOR.$$MINOR to $$MAJOR.$$NEW ($$D), ok? "; \
157 if [ "x$$line" != "xyes" -a "x$$line" != "xy" ]; then \
161 sed -e "s/\([0-9]\.[0-9][0-9]*\)/$$MAJOR.$$NEW/" \
162 -e "s/\(([0-9][0-9]*-[A-Za-z][a-z][a-z]-[0-9][0-9][0-9]*\))/($$D)/" \
164 /bin/echo -n "New version and date are "; \
165 sed -n "s/[^0-9]*\([0-9]\.[0-9][0-9]*\) (\([-A-Za-z0-9]*\)).*/\1, \2./p" \
167 cat $$TMP > $$SRC ; \
169 echo "overwrote $$SRC"; \
172 bump_version:: bump-version
173 tick-version:: bump-version
174 tick_version:: bump-version
178 SRC=utils/version.h ; \
179 D=`date '+%d-%b-%Y'`; \
181 sed -e "s/([0-9][^()]*)/($$D)/" < $$SRC > $$TMP ; \
182 /bin/echo -n "Updating date in $$SRC to \"$$D\"... " ; \
183 if cmp -s $$SRC $$TMP ; then \
184 echo "unchanged." ; \
186 cat $$TMP > $$SRC ; \
192 update_spec_version::
193 @S=$(srcdir)/xscreensaver.spec ; \
194 U=$(srcdir)/utils/version.h ; \
195 VERS=`sed -n 's/[^0-9]*\([0-9]\.[0-9][^. ]*\).*/\1/p' < $$U` ; \
196 /bin/echo -n "Updating $$S to \"$$VERS\"... " ; \
198 sed "s/^\(%define.version[^0-9]*\)\(.*\)/\1$$VERS/" \
200 if cmp -s $$S $$T ; then \
201 echo "unchanged." ; \
210 VERS=`sed -n 's/[^0-9]*\([0-9]\.[0-9][^. ]*\).*/\1/p' utils/version.h` ; \
211 DIR=`pwd`/rpm_build ; \
212 ARCH=`rpm --showrc | sed -n 's/^build arch *: //p'` ; \
214 TGZ=xscreensaver-$$VERS.tar.gz ; \
215 if [ ! -f $${ADIR}$$TGZ ]; then \
216 echo "$${ADIR}$$TGZ does not exist! Did you forget to \`make tar'?" ; \
219 rm -rf /var/tmp/xscreensaver-$$VERS-root ; \
222 ( cd $$DIR; mkdir BUILD RPMS RPMS/$$ARCH SOURCES SPECS SRPMS ) ; \
223 cp -p $${ADIR}$$TGZ $$DIR/SOURCES/ ; \
224 rpmbuild --define "_topdir $$DIR" \
225 --define "USE_GL yes" \
226 -v -ba xscreensaver.spec ; \
228 echo 'RPM build complete' ; \
230 rm -f $$DIR/$$TGZ ; \
231 rm -rf $$DIR/BUILD/xscreensaver-$$VERS ; \
232 mv $$DIR/SRPMS/xscreensaver*-$$VERS-*.rpm . ; \
233 mv $$DIR/RPMS/$$ARCH/xscreensaver*-$$VERS-*.rpm . ; \
236 ls -lFG xscreensaver*-$$VERS-*.rpm
240 VERS=`sed -n 's/[^0-9]*\([0-9]\.[0-9][^. ]*\).*/\1/p' utils/version.h` ; \
241 D=xscreensaver-$$VERS ; \
243 NAME="$${ADIR}$$D.tar.gz" ; \
244 if [ ! -f $$NAME ]; then \
245 echo "$$NAME does not exist! Did you forget to \`make tar'?" ; \
252 if [ -d $$D ]; then \
256 zcat $${ADIR}$$D.tar.gz | tar -xf - ; \
262 mkdir BIN/lesstif ; \
268 ../../configure --without-xpm --without-xdbe --without-xshm \
269 --with-motif=/usr/local/motif ; \
270 echo --------------------------------------------------------------- ; \
272 ( cd driver; gmake tests ) ; \
273 echo --------------------------------------------------------------- ); \
278 ../../configure --with-motif=/usr/local/lesstif --without-gnome ; \
279 echo --------------------------------------------------------------- ; \
280 ( cd utils; gmake all ) ; \
281 ( cd driver; gmake all ) ; \
282 echo --------------------------------------------------------------- ); \
287 $(MAKE) -C OSX release dmg
291 DEST=$$HOME/www/xscreensaver ; \
292 VERS=`sed -n 's/[^0-9]*\([0-9]\.[0-9][^. ]*\).*/\1/p' utils/version.h` ; \
293 HEAD="xscreensaver-$$VERS" ; \
295 BNAME="$$HEAD.tar.gz" ; \
296 NAME="$$ADIR$$BNAME" ; \
297 DNAME="$$DEST/$$HEAD.tar.gz" ; \
298 BNAME2="$$HEAD.dmg" ; \
299 NAME2="$$ADIR$$BNAME2" ; \
300 DNAME2="$$DEST/$$HEAD.dmg" ; \
302 if [ ! -f $$NAME ]; then \
303 echo "$$NAME does not exist! Did you forget to \`make tar'?" ; \
306 if [ ! -f $$NAME2 ]; then \
307 echo "$$NAME2 does not exist! Did you forget to \`make dmg'?" ; \
311 if [ -f $$DNAME ]; then \
312 /bin/echo -n "WARNING: $$DNAME already exists! Overwrite? "; \
314 if [ "x$$line" != "xyes" -a "x$$line" != "xy" ]; then \
318 if [ -f $$DNAME2 ]; then \
319 /bin/echo -n "WARNING: $$DNAME2 already exists! Overwrite? "; \
321 if [ "x$$line" != "xyes" -a "x$$line" != "xy" ]; then \
325 cp -p $$NAME $$DNAME ; \
326 cp -p $$NAME2 $$DNAME2 ; \
327 chmod u+w $$DNAME $$DNAME2 ; \
331 sed "s/xscreensaver-5\.[0-9][0-9ab]*/$$HEAD/g" download.html > $$TMP ; \
333 diff -U0 download.html $$TMP ; \
336 for EXT in tar.gz dmg ; do \
337 OLDEST=`ls xscreensaver*.$$EXT | head -n 1` ; \
338 /bin/echo -n "Delete $$DEST/$$OLDEST? "; \
340 if [ "x$$line" = "xyes" -o "x$$line" = "xy" ]; then \
343 cvs remove $$OLDEST ; \
348 cvs add -kb $$BNAME $$BNAME2 ; \
349 cat $$TMP > download.html ; \
352 $(MAKE) -C ../ xscreensaver/changelog.html xscreensaver/screenshots/index.html; \
353 cvs diff -U0 changelog.html ; \
356 /bin/echo -n "Ok? "; \
358 if [ "x$$line" != "xyes" -a "x$$line" != "xy" ]; then \
362 cvs commit -m "$$VERS"
367 /bin/echo -n "Current hack count: " ; \
368 ( ( cd hacks; make -s INSTALL=true install-program install-scripts ) ; \
369 ( cd hacks/glx; make -s INSTALL=true install-program ) ) | \