X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2FMakefile.in;h=111e7865846b8232ba04974d6f49c0755b8cfdb7;hb=de041722414a2e31c1c04caa10aaec9d6952e9b4;hp=cd1921ac41a95379dc7d83bfc31bb8dc3aa04107;hpb=5832fe184606766fef23369159306c0a5799aeb0;p=xscreensaver diff --git a/hacks/Makefile.in b/hacks/Makefile.in index cd1921ac..111e7865 100644 --- a/hacks/Makefile.in +++ b/hacks/Makefile.in @@ -1,4 +1,4 @@ -# hacks/Makefile.in --- xscreensaver, Copyright (c) 1997 Jamie Zawinski. +# hacks/Makefile.in --- xscreensaver, Copyright (c) 1997-1999 Jamie Zawinski. # the `../configure' script generates `hacks/Makefile' from this file. @SET_MAKE@ @@ -30,6 +30,7 @@ DEPEND_DEFINES = @DEPEND_DEFINES@ SHELL = /bin/sh INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_DIRS = @INSTALL_DIRS@ HACKDIR = @HACKDIR@ @@ -85,7 +86,8 @@ SRCS = attraction.c blitspin.c bouboule.c braid.c bubbles.c \ sonar.c demon.c loop.c t3d.c penetrate.c deluxe.c compass.c \ squiral.c xflame.c wander.c spotlight.c critical.c \ phosphor.c xmatrix.c petri.c shadebobs.c xsublim.c ccurve.c \ - blaster.c bumps.c + blaster.c bumps.c ripples.c xteevee.c xspirograph.c \ + nerverot.c xrayswarm.c hyperball.c zoom.c whirlwindwarp.c SCRIPTS = vidwhacker webcollage OBJS = attraction.o blitspin.o bouboule.o braid.o bubbles.o \ @@ -104,7 +106,8 @@ OBJS = attraction.o blitspin.o bouboule.o braid.o bubbles.o \ sonar.o demon.o loop.o t3d.o penetrate.o deluxe.o compass.o \ squiral.o xflame.o wander.o spotlight.o critical.o \ phosphor.o xmatrix.o petri.o shadebobs.o xsublim.o ccurve.o \ - blaster.o bumps.o + blaster.o bumps.o ripples.o xteevee.o xspirograph.o \ + nerverot.o xrayswarm.o hyperball.o zoom.o whirlwindwarp.o EXES = attraction blitspin bouboule braid bubbles decayscreen deco \ drift flag flame forest vines galaxy grav greynetic halo \ @@ -117,7 +120,8 @@ EXES = attraction blitspin bouboule braid bubbles decayscreen deco \ interference truchet bsod crystal discrete distort kumppa \ sonar demon loop t3d penetrate deluxe compass squiral \ xflame wander spotlight critical phosphor xmatrix petri \ - shadebobs xsublim ccurve blaster bumps + shadebobs xsublim ccurve blaster bumps ripples xteevee \ + xspirograph nerverot xrayswarm hyperball zoom whirlwindwarp HACK_OBJS_1 = $(UTILS_BIN)/resources.o $(UTILS_BIN)/visual.o \ $(UTILS_BIN)/usleep.o $(UTILS_BIN)/yarandom.o @XMU_OBJS@ @@ -144,7 +148,9 @@ MEN = attraction.man blitspin.man bouboule.man braid.man \ xroger.man goop.man starfish.man munch.man rd-bomb.man \ xjack.man xlyap.man jigsaw.man epicycle.man bsod.man \ sonar.man t3d.man squiral.man spotlight.man critical.man \ - vidwhacker.man webcollage.man xsublim.man + vidwhacker.man webcollage.man xsublim.man distort.man \ + phosphor.man xmatrix.man xteevee.man xflame.man petri.man \ + nerverot.man zoom.man whirlwindwarp.man STAR = * EXTRAS = README Makefile.in xlock_23.h .gdbinit \ images/$(STAR).xbm \ @@ -171,10 +177,14 @@ install-strip: $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install install-program: $(EXES) - @if [ ! -d $(HACKDIR) ]; then $(INSTALL_DIRS) $(HACKDIR) ; fi ; \ + @if [ ! -d $(install_prefix)$(HACKDIR) ]; then \ + $(INSTALL_DIRS) $(install_prefix)$(HACKDIR) ; \ + fi ; \ for program in $(EXES); do \ - echo $(INSTALL_PROGRAM) $$program $(HACKDIR)/$$program ; \ - $(INSTALL_PROGRAM) $$program $(HACKDIR)/$$program ; \ + echo $(INSTALL_PROGRAM) $$program \ + $(install_prefix)$(HACKDIR)/$$program ; \ + $(INSTALL_PROGRAM) $$program \ + $(install_prefix)$(HACKDIR)/$$program ; \ done install-scripts: $(SCRIPTS) munge-scripts @@ -184,8 +194,10 @@ install-scripts: $(SCRIPTS) munge-scripts else \ p=$(srcdir)/$$program ; \ fi ; \ - echo $(INSTALL_PROGRAM) $$p $(HACKDIR)/$$program ; \ - $(INSTALL_PROGRAM) $$p $(HACKDIR)/$$program ; \ + echo $(INSTALL_SCRIPT) $$p \ + $(install_prefix)$(HACKDIR)/$$program ; \ + $(INSTALL_SCRIPT) $$p \ + $(install_prefix)$(HACKDIR)/$$program ; \ done munge-scripts: $(SCRIPTS) @@ -204,25 +216,29 @@ munge-scripts: $(SCRIPTS) install-man: $(MEN) @men="$(MEN)" ; \ - if [ ! -d $(man1dir) ]; then $(INSTALL_DIRS) $(man1dir) ; fi ; \ + if [ ! -d $(install_prefix)$(man1dir) ]; then \ + $(INSTALL_DIRS) $(install_prefix)$(man1dir) ; \ + fi ; \ for man in $$men; do \ instname=`echo $$man | sed 's/\.man$$/\.$(mansuffix)/'` ; \ - echo $(INSTALL_DATA) $(srcdir)/$$man $(man1dir)/$$instname ; \ - $(INSTALL_DATA) $(srcdir)/$$man $(man1dir)/$$instname ; \ + echo $(INSTALL_DATA) $(srcdir)/$$man \ + $(install_prefix)$(man1dir)/$$instname ; \ + $(INSTALL_DATA) $(srcdir)/$$man \ + $(install_prefix)$(man1dir)/$$instname ; \ done uninstall-program: @for program in $(EXES) $(SCRIPTS); do \ - echo rm -f $(HACKDIR)/$$program ; \ - rm -f $(HACKDIR)/$$program ; \ + echo rm -f $(install_prefix)$(HACKDIR)/$$program ; \ + rm -f $(install_prefix)$(HACKDIR)/$$program ; \ done uninstall-man: @men="$(MEN)" ; \ for man in $$men; do \ instname=`echo $$man | sed 's/\.man$$/\.$(mansuffix)/'` ; \ - echo rm -f $(man1dir)/$$instname ; \ - rm -f $(man1dir)/$$instname ; \ + echo rm -f $(install_prefix)$(man1dir)/$$instname ; \ + rm -f $(install_prefix)$(man1dir)/$$instname ; \ done clean: @@ -486,8 +502,8 @@ interference: interference.o $(HACK_OBJS) $(COL) $(SHM) $(DBE) truchet: truchet.o $(HACK_OBJS) $(COL) $(CC_HACK) -o $@ $@.o $(HACK_OBJS) $(COL) $(HACK_LIBS) -bsod: bsod.o $(HACK_OBJS) $(COL) - $(CC_HACK) -o $@ $@.o $(HACK_OBJS) $(COL) $(HACK_LIBS) $(XPM_LIBS) +bsod: bsod.o $(HACK_OBJS) $(GRAB) + $(CC_HACK) -o $@ $@.o $(HACK_OBJS) $(GRAB) $(HACK_LIBS) $(XPM_LIBS) $(GRAB_LIBS) distort: distort.o $(HACK_OBJS) $(GRAB) $(SHM) $(CC_HACK) -o $@ $@.o $(HACK_OBJS) $(GRAB) $(SHM) $(HACK_LIBS) $(GRAB_LIBS) @@ -543,9 +559,33 @@ ccurve: ccurve.o $(HACK_OBJS) $(COL) $(SPL) blaster: blaster.o $(HACK_OBJS) $(CC_HACK) -o $@ $@.o $(HACK_OBJS) $(HACK_LIBS) -bumps: bumps.o $(HACK_OBJS) $(GRAB) +bumps: bumps.o $(HACK_OBJS) $(GRAB) $(CC_HACK) -o $@ $@.o $(HACK_OBJS) $(GRAB) $(HACK_LIBS) $(GRAB_LIBS) +ripples: ripples.o $(HACK_OBJS) $(SHM) $(GRAB) + $(CC_HACK) -o $@ $@.o $(HACK_OBJS) $(SHM) $(GRAB) $(HACK_LIBS) $(GRAB_LIBS) + +xteevee: xteevee.o $(HACK_OBJS) $(GRAB) + $(CC_HACK) -o $@ $@.o $(HACK_OBJS) $(GRAB) $(HACK_LIBS) $(GRAB_LIBS) + +xspirograph: xspirograph.o $(HACK_OBJS) $(COL) $(ERASE) + $(CC_HACK) -o $@ $@.o $(HACK_OBJS) $(COL) $(ERASE) $(HACK_LIBS) + +nerverot: nerverot.o $(HACK_OBJS) $(COL) + $(CC_HACK) -o $@ $@.o $(HACK_OBJS) $(COL) $(HACK_LIBS) + +xrayswarm: xrayswarm.o $(HACK_OBJS) + $(CC_HACK) -o $@ $@.o $(HACK_OBJS) $(HACK_LIBS) + +hyperball: hyperball.o $(HACK_OBJS) + $(CC_HACK) -o $@ $@.o $(HACK_OBJS) $(HACK_LIBS) + +zoom: zoom.o $(HACK_OBJS) $(GRAB) + $(CC_HACK) -o $@ $@.o $(HACK_OBJS) $(GRAB) $(HACK_LIBS) $(GRAB_LIBS) + +whirlwindwarp: whirlwindwarp.o $(HACK_OBJS) $(COL) + $(CC_HACK) -o $@ $@.o $(HACK_OBJS) $(COL) $(HACK_LIBS) + # The rules for those hacks which follow the `xlockmore' API. # @@ -1626,6 +1666,7 @@ xflame.o: $(UTILS_SRC)/colors.h xflame.o: $(UTILS_SRC)/grabscreen.h xflame.o: $(UTILS_SRC)/visual.h xflame.o: $(UTILS_SRC)/xshm.h +xflame.o: $(srcdir)/images/bob.xbm wander.o: $(srcdir)/screenhack.h wander.o: ../config.h wander.o: $(UTILS_SRC)/yarandom.h @@ -1674,7 +1715,9 @@ xmatrix.o: $(UTILS_SRC)/colors.h xmatrix.o: $(UTILS_SRC)/grabscreen.h xmatrix.o: $(UTILS_SRC)/visual.h xmatrix.o: $(srcdir)/images/matrix.xpm +xmatrix.o: $(srcdir)/images/matrix2.xpm xmatrix.o: $(srcdir)/images/matrix.xbm +xmatrix.o: $(srcdir)/images/matrix2.xbm petri.o: $(srcdir)/screenhack.h petri.o: ../config.h petri.o: $(UTILS_SRC)/yarandom.h @@ -1695,6 +1738,7 @@ shadebobs.o: $(UTILS_SRC)/colors.h shadebobs.o: $(UTILS_SRC)/grabscreen.h shadebobs.o: $(UTILS_SRC)/visual.h xsublim.o: $(UTILS_SRC)/usleep.h +xsublim.o: $(UTILS_SRC)/yarandom.h xsublim.o: $(UTILS_SRC)/resources.h ccurve.o: $(srcdir)/screenhack.h ccurve.o: ../config.h @@ -1725,4 +1769,79 @@ bumps.o: $(UTILS_SRC)/hsv.h bumps.o: $(UTILS_SRC)/colors.h bumps.o: $(UTILS_SRC)/grabscreen.h bumps.o: $(UTILS_SRC)/visual.h +ripples.o: $(srcdir)/screenhack.h +ripples.o: ../config.h +ripples.o: $(UTILS_SRC)/yarandom.h +ripples.o: $(UTILS_SRC)/usleep.h +ripples.o: $(UTILS_SRC)/resources.h +ripples.o: $(UTILS_SRC)/hsv.h +ripples.o: $(UTILS_SRC)/colors.h +ripples.o: $(UTILS_SRC)/grabscreen.h +ripples.o: $(UTILS_SRC)/visual.h +ripples.o: $(UTILS_SRC)/xshm.h +xteevee.o: $(srcdir)/screenhack.h +xteevee.o: ../config.h +xteevee.o: $(UTILS_SRC)/yarandom.h +xteevee.o: $(UTILS_SRC)/usleep.h +xteevee.o: $(UTILS_SRC)/resources.h +xteevee.o: $(UTILS_SRC)/hsv.h +xteevee.o: $(UTILS_SRC)/colors.h +xteevee.o: $(UTILS_SRC)/grabscreen.h +xteevee.o: $(UTILS_SRC)/visual.h +xspirograph.o: $(srcdir)/screenhack.h +xspirograph.o: ../config.h +xspirograph.o: $(UTILS_SRC)/yarandom.h +xspirograph.o: $(UTILS_SRC)/usleep.h +xspirograph.o: $(UTILS_SRC)/resources.h +xspirograph.o: $(UTILS_SRC)/hsv.h +xspirograph.o: $(UTILS_SRC)/colors.h +xspirograph.o: $(UTILS_SRC)/grabscreen.h +xspirograph.o: $(UTILS_SRC)/visual.h +xspirograph.o: $(UTILS_SRC)/erase.h +nerverot.o: $(srcdir)/screenhack.h +nerverot.o: ../config.h +nerverot.o: $(UTILS_SRC)/yarandom.h +nerverot.o: $(UTILS_SRC)/usleep.h +nerverot.o: $(UTILS_SRC)/resources.h +nerverot.o: $(UTILS_SRC)/hsv.h +nerverot.o: $(UTILS_SRC)/colors.h +nerverot.o: $(UTILS_SRC)/grabscreen.h +nerverot.o: $(UTILS_SRC)/visual.h +xrayswarm.o: $(srcdir)/screenhack.h +xrayswarm.o: ../config.h +xrayswarm.o: $(UTILS_SRC)/yarandom.h +xrayswarm.o: $(UTILS_SRC)/usleep.h +xrayswarm.o: $(UTILS_SRC)/resources.h +xrayswarm.o: $(UTILS_SRC)/hsv.h +xrayswarm.o: $(UTILS_SRC)/colors.h +xrayswarm.o: $(UTILS_SRC)/grabscreen.h +xrayswarm.o: $(UTILS_SRC)/visual.h +hyperball.o: $(srcdir)/screenhack.h +hyperball.o: ../config.h +hyperball.o: $(UTILS_SRC)/yarandom.h +hyperball.o: $(UTILS_SRC)/usleep.h +hyperball.o: $(UTILS_SRC)/resources.h +hyperball.o: $(UTILS_SRC)/hsv.h +hyperball.o: $(UTILS_SRC)/colors.h +hyperball.o: $(UTILS_SRC)/grabscreen.h +hyperball.o: $(UTILS_SRC)/visual.h +zoom.o: $(srcdir)/screenhack.h +zoom.o: ../config.h +zoom.o: $(UTILS_SRC)/yarandom.h +zoom.o: $(UTILS_SRC)/usleep.h +zoom.o: $(UTILS_SRC)/resources.h +zoom.o: $(UTILS_SRC)/hsv.h +zoom.o: $(UTILS_SRC)/colors.h +zoom.o: $(UTILS_SRC)/grabscreen.h +zoom.o: $(UTILS_SRC)/visual.h +whirlwindwarp.o: $(srcdir)/screenhack.h +whirlwindwarp.o: ../config.h +whirlwindwarp.o: $(UTILS_SRC)/yarandom.h +whirlwindwarp.o: $(UTILS_SRC)/usleep.h +whirlwindwarp.o: $(UTILS_SRC)/resources.h +whirlwindwarp.o: $(UTILS_SRC)/hsv.h +whirlwindwarp.o: $(UTILS_SRC)/colors.h +whirlwindwarp.o: $(UTILS_SRC)/grabscreen.h +whirlwindwarp.o: $(UTILS_SRC)/visual.h +whirlwindwarp.o: $(UTILS_SRC)/erase.h