projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
56faf63
)
Avoid GNUism $^ in makefiles.
author
Taylor R Campbell
<campbell@mumble.net>
Wed, 27 Apr 2011 21:14:55 +0000
(21:14 +0000)
committer
Taylor R Campbell
<campbell@mumble.net>
Wed, 27 Apr 2011 21:14:55 +0000
(21:14 +0000)
src/ffi/Makefile-fragment
patch
|
blob
|
history
diff --git
a/src/ffi/Makefile-fragment
b/src/ffi/Makefile-fragment
index 054b847b6d9c9543aa16a3b5832d9698cb9c6c84..63192ccca51a7b1391bcdfdc04b614c6365be537 100644
(file)
--- 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 $<