2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-20 16:52:15 +00:00

-all ld option removed.

[SVN r9721]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2001-04-05 14:35:06 +00:00
parent e2580e5c60
commit 38492e4e7e

View File

@@ -29,7 +29,7 @@ CPPOPTS= $(STLPORTINC) $(STLPORTOPTS) -I$(BOOST) $(PYINC) \
MAKEDEP= -M
LD= CC -LANG:std -n32 -mips4
LDOPTS= -shared -all
LDOPTS= -shared
OBJ = classes.o conversions.o extension_class.o functions.o \
init_function.o module_builder.o \
@@ -58,7 +58,7 @@ all: libboost_python.a \
libboost_python.a: $(OBJ)
rm -f libboost_python.a
$(CPP) -ar -all -o libboost_python.a $(OBJ)
$(CPP) -ar -o libboost_python.a $(OBJ)
boost_python_test.so: $(OBJ) comprehensive.o
$(LD) $(LDOPTS) $(OBJ) comprehensive.o -o boost_python_test.so -lm