aboutsummaryrefslogtreecommitdiff
path: root/Recipe
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2005-08-13 10:43:26 +0000
committerSimon Tatham <anakin@pobox.com>2005-08-13 10:43:26 +0000
commit6ada3841a176fcdb12b953af23c0aac40532d417 (patch)
tree7a669ba4f9b5589085bb58e7331a0d54d8ba2f6e /Recipe
parent12def7ede2c9cee4f7a5ac37a60ee1a61cd5c24a (diff)
downloadpuzzles-6ada3841a176fcdb12b953af23c0aac40532d417.zip
puzzles-6ada3841a176fcdb12b953af23c0aac40532d417.tar.gz
puzzles-6ada3841a176fcdb12b953af23c0aac40532d417.tar.bz2
puzzles-6ada3841a176fcdb12b953af23c0aac40532d417.tar.xz
New puzzle: `Map'. Vaguely original, for a change.
(This puzzle is theoretically printable, but I haven't added it in print.py since there's rather a lot of painful processing required to get from the game ID to the puzzle's visual appearance. It probably won't become printable unless I get round to implementing a more integrated printing architecture.) [originally from svn r6186]
Diffstat (limited to 'Recipe')
-rw-r--r--Recipe8
1 files changed, 6 insertions, 2 deletions
diff --git a/Recipe b/Recipe
index 903e50b..81d4e9d 100644
--- a/Recipe
+++ b/Recipe
@@ -22,10 +22,11 @@ FLIP = flip tree234
PEGS = pegs tree234
UNTANGLE = untangle tree234
SLANT = slant dsf
+MAP = map dsf
ALL = list NET NETSLIDE cube fifteen sixteen rect pattern solo twiddle
+ MINES samegame FLIP guess PEGS dominosa UNTANGLE blackbox SLANT
- + lightup
+ + lightup MAP
net : [X] gtk COMMON NET
netslide : [X] gtk COMMON NETSLIDE
@@ -46,6 +47,7 @@ untangle : [X] gtk COMMON UNTANGLE
blackbox : [X] gtk COMMON blackbox
slant : [X] gtk COMMON SLANT
lightup : [X] gtk COMMON lightup
+map : [X] gtk COMMON MAP
# Auxiliary command-line programs.
solosolver : [U] solo[STANDALONE_SOLVER] malloc
@@ -79,6 +81,7 @@ untangle : [G] WINDOWS COMMON UNTANGLE
blackbox : [G] WINDOWS COMMON blackbox
slant : [G] WINDOWS COMMON SLANT
lightup : [G] WINDOWS COMMON lightup
+map : [G] WINDOWS COMMON MAP
# Mac OS X unified application containing all the puzzles.
Puzzles : [MX] osx osx.icns osx-info.plist COMMON ALL
@@ -170,7 +173,8 @@ FORCE:
install:
for i in cube net netslide fifteen sixteen twiddle \
pattern rect solo mines samegame flip guess \
- pegs dominosa untangle blackbox slant lightup; do \
+ pegs dominosa untangle blackbox slant lightup \
+ map; do \
$(INSTALL_PROGRAM) -m 755 $$i $(DESTDIR)$(gamesdir)/$$i; \
done
!end