diff options
author | Roland McGrath <roland@gnu.org> | 1995-10-04 20:21:21 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-10-04 20:21:21 +0000 |
commit | 096bb11e5848b06642a42a747c9c1b3d14b5df5f (patch) | |
tree | 27b910c71c2b03d2ef84fe3186bfc86c3af6b76b /Makeconf | |
parent | 64f3983f673c64825a5d97d7cdd3f86ed9214a7a (diff) |
(%_pic.o: %.c): Use $(COMPILE.c) instead of its contents. Pass -DPIC.
(%_pic.o: %.S): New rule.
Diffstat (limited to 'Makeconf')
-rw-r--r-- | Makeconf | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -216,8 +216,10 @@ relink: # Default rule to build PIC object files. %_pic.o: %.c - $(CC) -c $(CPPFLAGS) $(CFLAGS) -fPIC $< -o $@ + $(COMPILE.c) $< -DPIC -fPIC -o $@ +%_pic.o: %.S + $(COMPILE.S) $< -DPIC -o $@ # How to build RPC stubs |