diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-20 03:21:56 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-20 03:21:56 +0000 |
commit | 60b3b2c8f679fb1c0ea8565f513dc6e1aa3bb23a (patch) | |
tree | 650ffe9ba8385c068cc754992521e328ccb2e385 /Makefile | |
parent | 9f1c86779c5bfbd2221640c78ce71e69f6beef6e (diff) |
Fix some strange formatting, so the compile looks prettier.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -47,9 +47,12 @@ shared: $(STATIC_NAME) @mkdir tmp @(cd tmp; CC=$(CC) /bin/sh ../extra/scripts/get-needed-libgcc-objects.sh) if [ -s ./tmp/libgcc-need.a ] ; then \ - $(CC) -g $(LDFLAGS) -shared -o $(SHARED_NAME) -Wl,-soname,$(SHARED_NAME) -Wl,--whole-archive ./libc.a ./tmp/libgcc-need.a ; \ + $(CC) -g $(LDFLAGS) -shared -o $(SHARED_NAME) \ + -Wl,-soname,$(SHARED_NAME) -Wl,--whole-archive \ + ./libc.a ./tmp/libgcc-need.a ; \ else \ - $(CC) -g $(LDFLAGS) -shared -o $(SHARED_NAME) -Wl,-soname,$(SHARED_NAME) -Wl,--whole-archive ./libc.a ; \ + $(CC) -g $(LDFLAGS) -shared -o $(SHARED_NAME) \ + -Wl,-soname,$(SHARED_NAME) -Wl,--whole-archive ./libc.a ; \ fi @rm -rf tmp |