Stop the analysis pass in Loopy's redraw routine from being
[sgt/puzzles] / Recipe
diff --git a/Recipe b/Recipe
index e57e7cd..425f419 100644 (file)
--- a/Recipe
+++ b/Recipe
@@ -13,6 +13,7 @@
 !makefile wce Makefile.wce
 !makefile cygwin Makefile.cyg
 !makefile osx Makefile.osx
+!makefile gnustep Makefile.gnustep
 !makefile nestedvm Makefile.nestedvm
 
 !srcdir icons/
@@ -152,9 +153,9 @@ version2.def: FORCE
 # generates _nearly_ the same output, but it has no check function.
 !begin osx
 version.ppc.o: version.c version2.def
-       $(CC) -arch ppc $(COMPAT) $(XFLAGS) $(CFLAGS) `cat version2.def` -c version.c
+       $(CC) -arch ppc $(COMPAT) $(XFLAGS) $(CFLAGS) `cat version2.def` -c version.c -o $@
 version.i386.o: version.c version2.def
-       $(CC) -arch i386 $(COMPAT) $(XFLAGS) $(CFLAGS) `cat version2.def` -c version.c
+       $(CC) -arch i386 $(COMPAT) $(XFLAGS) $(CFLAGS) `cat version2.def` -c version.c -o $@
 version2.def: FORCE
        if test -z "$(VER)" && test -f manifest && (md5 -r `awk '{print $$2}' manifest` | diff -w manifest -); then \
                cat version.def > version2.def.new; \
@@ -169,13 +170,14 @@ version2.def: FORCE
                mv version2.def.new version2.def; \
        fi
 .PHONY: FORCE
+!end
 !specialobj osx version
 
 # make install for Unix.
 !begin gtk
 install:
        for i in $(GAMES); do \
-               $(INSTALL_PROGRAM) -m 755 $$i $(DESTDIR)$(gamesdir)/$$i \
+               $(INSTALL_PROGRAM) -m 755 $(BINPREFIX)$$i $(DESTDIR)$(gamesdir)/$(BINPREFIX)$$i \
                || exit 1; \
        done
 !end