summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-03-20 03:21:56 +0000
committerEric Andersen <andersen@codepoet.org>2001-03-20 03:21:56 +0000
commit60b3b2c8f679fb1c0ea8565f513dc6e1aa3bb23a (patch)
tree650ffe9ba8385c068cc754992521e328ccb2e385 /Makefile
parent9f1c86779c5bfbd2221640c78ce71e69f6beef6e (diff)
Fix some strange formatting, so the compile looks prettier.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1070e1167..871691d1c 100644
--- a/Makefile
+++ b/Makefile
@@ -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