In the Windows frontend, stop tab navigation from activating buttons.
[sgt/puzzles] / Recipe
diff --git a/Recipe b/Recipe
index 42618eb..885b0d7 100644 (file)
--- a/Recipe
+++ b/Recipe
@@ -10,6 +10,7 @@
 
 !makefile gtk Makefile
 !makefile vc Makefile.vc
+!makefile wce Makefile.wce
 !makefile cygwin Makefile.cyg
 !makefile osx Makefile.osx
 
@@ -89,6 +90,11 @@ version.obj: *.c *.h
        cl $(VER) $(CFLAGS) /c version.c
 !end
 !specialobj vc version
+!begin wce
+version.obj: *.c *.h
+       $(CC) $(VER) $(CFLAGS) /c version.c
+!end
+!specialobj wce version
 !begin cygwin
 version.o: FORCE;
 FORCE:
@@ -102,7 +108,7 @@ version.o: FORCE;
 FORCE:
        if test -z "$(VER)" && test -f manifest && md5sum -c manifest; then \
                $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) `cat version.def` -c version.c; \
-       elif test -z "$(VER)" && test -d .svn && svnversion . >&/dev/null; then \
+       elif test -z "$(VER)" && test -d .svn && svnversion . >/dev/null 2>&1; then \
                $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) "-DREVISION=`svnversion .`" -c version.c; \
        else \
                $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) $(VER) -c version.c; \
@@ -117,7 +123,7 @@ version.o: FORCE;
 FORCE:
        if test -z "$(VER)" && test -f manifest && (md5 -r `awk '{print $$2}' manifest` | diff -w manifest -); then \
                $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) `cat version.def` -c version.c; \
-       elif test -z "$(VER)" && test -d .svn && svnversion . >&/dev/null; then \
+       elif test -z "$(VER)" && test -d .svn && svnversion . >/dev/null 2>&1; then \
                $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) "-DREVISION=`svnversion .`" -c version.c; \
        else \
                $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) $(VER) -c version.c; \