Avoid GNUism $^ in makefiles.
authorTaylor R Campbell <campbell@mumble.net>
Wed, 27 Apr 2011 21:14:55 +0000 (21:14 +0000)
committerTaylor R Campbell <campbell@mumble.net>
Wed, 27 Apr 2011 21:14:55 +0000 (21:14 +0000)
src/ffi/Makefile-fragment

index 054b847b6d9c9543aa16a3b5832d9698cb9c6c84..63192ccca51a7b1391bcdfdc04b614c6365be537 100644 (file)
@@ -22,7 +22,7 @@ install:
 build: ffi-test-shim.so ffi-test-types.bin ffi-test-const.bin
 
 ffi-test-shim.so: ffi-test-shim.o ffi-test.o
-       $(LINK_SHIM) $^ -o $@
+       $(LINK_SHIM) ffi-test-shim.o ffi-test.o -o $@
 
 ffi-test-shim.o: ffi-test-shim.c ffi-test.h
        $(COMPILE_SHIM) -o $@ -c $<
@@ -41,7 +41,7 @@ ffi-test-const.scm: ffi-test-const
 
 ffi-test-const: ffi-test-const.o
        @rm -f $@
-       $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
+       $(CC) $(CFLAGS) $(LDFLAGS) -o $@ ffi-test-const.o
 
 ffi-test-const.o: ffi-test-const.c
        $(CC) $(CFLAGS) -o $@ -c $<