36b7c5af00
Compiles and installs/deinstalls cleanly on 1.5ZA/i386, otherwise untested, but that's better than a BROKEN package. Some cleanup.
10 lines
417 B
OCaml
10 lines
417 B
OCaml
# ELF with shared libm, so we can link it into the shared libstdc++.
|
|
|
|
ARLIB = libstdc++.a.`echo $(VERSION) | sed 's/\([0-9]*[.][0-9]*\).*/\1/'`
|
|
SHLIB = libstdc++.so.`echo $(VERSION) | sed 's/\([0-9]*[.][0-9]*\).*/\1/'`
|
|
MSHLINK = libstdc++.so.`echo $(VERSION) | sed 's/\([0-9]*\).*/\1/'`
|
|
|
|
LIBS = $(ARLIB) $(ARLINK) $(SHLIB) $(SHLINK) mshlink
|
|
SHFLAGS = -Wl,-soname,$(MSHLINK)
|
|
SHDEPS = -lm
|
|
DEPLIBS = ../$(SHLIB)
|