diff options
| author | Simon Tatham <anakin@pobox.com> | 2005-08-02 23:16:46 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2005-08-02 23:16:46 +0000 |
| commit | afe80030e4935fdebfbed24eeae94274cb7f0632 (patch) | |
| tree | f163f05a40523832c696f7d0c69c0493059dae95 /Recipe | |
| parent | 207c847553a978c6fcdb6269dc2b0add3c99a109 (diff) | |
| download | puzzles-afe80030e4935fdebfbed24eeae94274cb7f0632.zip puzzles-afe80030e4935fdebfbed24eeae94274cb7f0632.tar.gz puzzles-afe80030e4935fdebfbed24eeae94274cb7f0632.tar.bz2 puzzles-afe80030e4935fdebfbed24eeae94274cb7f0632.tar.xz | |
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]
Diffstat (limited to 'Recipe')
| -rw-r--r-- | Recipe | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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 |