Sha256: 97e64a5daf1b13395af1665b3f09e46b1dcbea8511142e797ba0fa17ec2a78af

Contents?: true

Size: 578 Bytes

Versions: 11

Compression:

Stored size: 578 Bytes

Contents

# This Makefile fetches an archive of Scott Adams's games from a
# well-known location and unpacks it; make clean removes the unpacked
# file and make realclean also removes the downloaded archive.  I
# don't want to include the Adams games in the ScottKit distribution,
# as they are still under copyright and not really mine to distribute.

adv01.dat: AdamsGames.zip
	unzip -o AdamsGames.zip

AdamsGames.zip:
	wget -nv http://ifmirror.russotto.net/if-archive/scott-adams/games/scottfree/AdamsGames.zip

clean:
	rm -f 0readme.txt *.dat

realclean: clean
	rm -f AdamsGames.zip

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
scottkit-1.6.0 games/adams/Makefile
scottkit-1.5.0 data/adams/Makefile
scottkit-1.4.0 data/adams/Makefile
scottkit-1.3.0 data/adams/Makefile
scottkit-1.2.0 data/adams/Makefile
scottkit-1.1.0 data/adams/Makefile
scottkit-1.0.0 data/adams/Makefile
scottkit-0.4.0 data/adams/Makefile
scottkit-0.2.0 data/adams/Makefile
scottkit-0.1.0 data/adams/Makefile
scottkit-0.0.0 data/adams/Makefile