From afe80030e4935fdebfbed24eeae94274cb7f0632 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Tue, 2 Aug 2005 23:16:46 +0000 Subject: New puzzle: `Slant', picked from the Japanese-language section of nikoli.co.jp (which has quite a few puzzles that they don't seem to have bothered to translate into English). Minor structural change: the disjoint set forest code used in the Net solver has come in handy again, so I've moved it out into its own module dsf.c. [originally from svn r6155] --- Recipe | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Recipe') diff --git a/Recipe b/Recipe index 92c09a4..55b0213 100644 --- a/Recipe +++ b/Recipe @@ -15,15 +15,16 @@ WINDOWS = windows user32.lib gdi32.lib comctl32.lib comdlg32.lib COMMON = midend misc malloc random version -NET = net tree234 +NET = net tree234 dsf NETSLIDE = netslide tree234 MINES = mines tree234 FLIP = flip tree234 PEGS = pegs tree234 UNTANGLE = untangle tree234 +SLANT = slant dsf ALL = list NET NETSLIDE cube fifteen sixteen rect pattern solo twiddle - + MINES samegame FLIP guess PEGS dominosa UNTANGLE blackbox + + MINES samegame FLIP guess PEGS dominosa UNTANGLE blackbox SLANT net : [X] gtk COMMON NET netslide : [X] gtk COMMON NETSLIDE @@ -42,6 +43,7 @@ pegs : [X] gtk COMMON PEGS dominosa : [X] gtk COMMON dominosa untangle : [X] gtk COMMON UNTANGLE blackbox : [X] gtk COMMON blackbox +slant : [X] gtk COMMON SLANT # Auxiliary command-line programs. solosolver : [U] solo[STANDALONE_SOLVER] malloc @@ -71,6 +73,7 @@ pegs : [G] WINDOWS COMMON PEGS dominosa : [G] WINDOWS COMMON dominosa untangle : [G] WINDOWS COMMON UNTANGLE blackbox : [G] WINDOWS COMMON blackbox +slant : [G] WINDOWS COMMON SLANT # Mac OS X unified application containing all the puzzles. Puzzles : [MX] osx osx.icns osx-info.plist COMMON ALL @@ -162,7 +165,7 @@ FORCE: install: for i in cube net netslide fifteen sixteen twiddle \ pattern rect solo mines samegame flip guess \ - pegs dominosa untangle blackbox; do \ + pegs dominosa untangle blackbox slant; do \ $(INSTALL_PROGRAM) -m 755 $$i $(DESTDIR)$(gamesdir)/$$i; \ done !end -- cgit v1.1