diff options
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 |