X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/6bbab0fe814716119783bd05ee06601048d5cc5e..a8c8847b94f2f07c350a331dfcbedbebef5b5c82:/Recipe?ds=inline diff --git a/Recipe b/Recipe index 642d97f..24fea9f 100644 --- a/Recipe +++ b/Recipe @@ -13,14 +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 + + MINES samegame FLIP guess PEGS net : [X] gtk COMMON NET netslide : [X] gtk COMMON NETSLIDE @@ -33,6 +35,9 @@ solo : [X] gtk COMMON solo twiddle : [X] gtk COMMON twiddle 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 # The Windows Net shouldn't be called `net.exe' since Windows # already has a reasonably important utility program by that name! @@ -47,6 +52,9 @@ solo : [G] WINDOWS COMMON solo twiddle : [G] WINDOWS COMMON twiddle 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 @@ -132,3 +140,13 @@ FORCE: fi !end !specialobj osx version + +# make install for Unix. +!begin gtk +install: + for i in cube net netslide fifteen sixteen twiddle \ + pattern rect solo mines samegame flip guess \ + pegs; do \ + $(INSTALL_PROGRAM) -m 755 $$i $(DESTDIR)$(gamesdir)/$$i; \ + done +!end