From ec5afcd19b18fc4182986694196427e83954ad41 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Wed, 27 Apr 2011 21:14:55 +0000 Subject: [PATCH] Avoid GNUism $^ in makefiles. --- src/ffi/Makefile-fragment | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ffi/Makefile-fragment b/src/ffi/Makefile-fragment index 054b847b6..63192ccca 100644 --- a/src/ffi/Makefile-fragment +++ b/src/ffi/Makefile-fragment @@ -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 $< -- 2.25.1