diff options
| author | Franklin Wei <git@fwei.tk> | 2018-04-24 18:06:44 -0400 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2018-04-24 19:06:30 -0400 |
| commit | 8f23493e08febc09c370b1d90d891953fa43ddf7 (patch) | |
| tree | 99fcf3e896c96c969bf2b424af8e327a3cf74787 /apps/plugins/puzzles/src/Recipe | |
| parent | ef0fb52113447c15f97eb8c707f56db4074eb578 (diff) | |
| download | rockbox-8f23493e08febc09c370b1d90d891953fa43ddf7.zip rockbox-8f23493e08febc09c370b1d90d891953fa43ddf7.tar.gz rockbox-8f23493e08febc09c370b1d90d891953fa43ddf7.tar.bz2 rockbox-8f23493e08febc09c370b1d90d891953fa43ddf7.tar.xz | |
puzzles: resync with upstream
This brings the upstream version to b3da238 (though some of my own
changes are included on top of that).
Change-Id: Ida73e8cd86765413147ce891af3cc2b7aeda2b2a
Diffstat (limited to 'apps/plugins/puzzles/src/Recipe')
| -rw-r--r-- | apps/plugins/puzzles/src/Recipe | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/plugins/puzzles/src/Recipe b/apps/plugins/puzzles/src/Recipe index 3b57ef5..fc9bc1b 100644 --- a/apps/plugins/puzzles/src/Recipe +++ b/apps/plugins/puzzles/src/Recipe @@ -31,6 +31,10 @@ STANDALONE = nullfe random misc malloc ALL = list +LATIN_DEPS = matching tree234 +LATIN = latin LATIN_DEPS +LATIN_SOLVER = latin[STANDALONE_SOLVER] LATIN_DEPS + # First half of list.c. !begin >list.c /* @@ -61,6 +65,14 @@ const int gamecount = lenof(gamelist); # Unix standalone application for special-purpose obfuscation. obfusc : [U] obfusc STANDALONE +# Test program built from latin.c. +latincheck : [U] latin[STANDALONE_LATIN_TEST] LATIN_DEPS STANDALONE +latincheck : [C] latin[STANDALONE_LATIN_TEST] LATIN_DEPS STANDALONE + +# Test program built from matching.c. +matching : [U] matching[STANDALONE_MATCHING_TEST] tree234 STANDALONE +matching : [C] matching[STANDALONE_MATCHING_TEST] tree234 STANDALONE + puzzles : [G] windows[COMBINED] WINDOWS_COMMON COMMON ALL noicon.res # Mac OS X unified application containing all the puzzles. |