summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2001-08-25 12:35:59 +0000
committerRoland McGrath <roland@gnu.org>2001-08-25 12:35:59 +0000
commit55a75ea471890d7374c5d5b550a9e9f41d0d86c8 (patch)
treed7605c6b674777c9de6c653d0aaca77e099bcaca
parent78537f7fd5fc243e4964fd5f4f9948e1a9093071 (diff)
2001-08-25 Roland McGrath <roland@frob.com>
* Makefile (parted.o, parted_pic.o): Pass -nostdlib. 2001-08-25 Neal H Walfield <neal@cs.uml.edu> * Makefile (libstore.so-LDFLAGS): Renamed from LDFLAGS-libstore.so.
-rw-r--r--libstore/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/libstore/Makefile b/libstore/Makefile
index 3598a56c..e3c665d3 100644
--- a/libstore/Makefile
+++ b/libstore/Makefile
@@ -52,13 +52,13 @@ else
# we slurp in all the Parted code we need and stuff it into one
# object file along with our code that uses it.
-LDFLAGS-libstore.so += $(PARTED_LIBS)
+libstore.so-LDFLAGS += $(PARTED_LIBS)
parted.o: part.o $(..)config.make
- $(CC) -r -o $@ $< $(PARTED_LIBS)
+ $(CC) -nostdlib -r -o $@ $< $(PARTED_LIBS)
parted_p.o: part_p.o $(..)config.make
- $(CC) -r -o $@ $< $(PARTED_LIBS:=_p)
+ $(CC) -nostdlib -r -o $@ $< $(PARTED_LIBS:=_p)
parted_pic.o: part_pic.o
ln -f $< $@