X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/74476385fc26d87cf93338a16d3901930fa967f3..3ff276f2cd88e6f3a6fe08f95f6147abbe3fcfd4:/Recipe diff --git a/Recipe b/Recipe index ab7b3c9..359ba6a 100644 --- a/Recipe +++ b/Recipe @@ -13,15 +13,16 @@ !makefile cygwin Makefile.cyg !makefile osx Makefile.osx -WINDOWS = windows user32.lib gdi32.lib comctl32.lib +WINDOWS = windows user32.lib gdi32.lib comctl32.lib comdlg32.lib COMMON = midend misc malloc random version NET = net tree234 NETSLIDE = netslide tree234 MINES = mines tree234 FLIP = flip tree234 +PEGS = pegs tree234 ALL = list NET NETSLIDE cube fifteen sixteen rect pattern solo twiddle - + MINES samegame FLIP guess + + MINES samegame FLIP guess PEGS net : [X] gtk COMMON NET netslide : [X] gtk COMMON NETSLIDE @@ -36,6 +37,16 @@ mines : [X] gtk COMMON MINES samegame : [X] gtk COMMON samegame flip : [X] gtk COMMON FLIP guess : [X] gtk COMMON guess +pegs : [X] gtk COMMON PEGS + +# Auxiliary command-line programs. +solosolver : [U] solo[STANDALONE_SOLVER] malloc +patternsolver : [U] pattern[STANDALONE_SOLVER] malloc +mineobfusc : [U] mines[STANDALONE_OBFUSCATOR] malloc random tree234 misc + +solosolver : [C] solo[STANDALONE_SOLVER] malloc +patternsolver : [C] pattern[STANDALONE_SOLVER] malloc +mineobfusc : [C] mines[STANDALONE_OBFUSCATOR] malloc random tree234 misc # The Windows Net shouldn't be called `net.exe' since Windows # already has a reasonably important utility program by that name! @@ -52,6 +63,7 @@ mines : [G] WINDOWS COMMON MINES samegame : [G] WINDOWS COMMON samegame flip : [G] WINDOWS COMMON FLIP guess : [G] WINDOWS COMMON guess +pegs : [G] WINDOWS COMMON PEGS # Mac OS X unified application containing all the puzzles. Puzzles : [MX] osx osx.icns osx-info.plist COMMON ALL @@ -142,7 +154,8 @@ FORCE: !begin gtk install: for i in cube net netslide fifteen sixteen twiddle \ - pattern rect solo mines samegame flip; do \ + pattern rect solo mines samegame flip guess \ + pegs; do \ $(INSTALL_PROGRAM) -m 755 $$i $(DESTDIR)$(gamesdir)/$$i; \ done !end