diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2012-06-01 08:06:26 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2012-06-01 08:06:26 +0000 |
commit | 0dea112e461346732009d388be7557b3c7fe3ec4 (patch) | |
tree | 9a0e51e8ebef26258d5bf91306cccd49ec7f440c /dev-libs/tinyxml/files | |
parent | Version bump. Drop old. (diff) | |
download | gentoo-2-0dea112e461346732009d388be7557b3c7fe3ec4.tar.gz gentoo-2-0dea112e461346732009d388be7557b3c7fe3ec4.tar.bz2 gentoo-2-0dea112e461346732009d388be7557b3c7fe3ec4.zip |
Stable on amd64 and x86 to match up ppc. Remove older stuff.
(Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/tinyxml/files')
-rw-r--r-- | dev-libs/tinyxml/files/Makefile-2 | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-libs/tinyxml/files/Makefile-2 b/dev-libs/tinyxml/files/Makefile-2 deleted file mode 100644 index 9e480922e9f0..000000000000 --- a/dev-libs/tinyxml/files/Makefile-2 +++ /dev/null @@ -1,33 +0,0 @@ -AR ?= ar -CXX ?= g++ -CXXFLAGS += -Wall -RANLIB ?= ranlib - -name = libtinyxml -major = @MAJOR_V@ -minor = @MINOR_V@ -version = $(major).$(minor) - -src = tinyxml.cpp tinyxmlparser.cpp tinyxmlerror.cpp tinystr.cpp -lo = $(addsuffix .lo,$(basename ${src})) -o = $(addsuffix .o,$(basename ${src})) - -all: $(name).a $(name).so - -%.o: %.cpp - $(CXX) -c $(CXXFLAGS) $(CPPFLAGS) $< -o $@ - -$(name).a: $(o) - $(AR) rc $(name).a $(o) - $(RANLIB) $(name).a - -%.lo: %.cpp - $(CXX) -c $(CXXFLAGS) $(CPPFLAGS) -fPIC $< -o $@ - -$(name).so: $(lo) - $(CXX) $(LDFLAGS) -fPIC -shared $(lo) -Wl,-soname,$(name).so.$(major) -o $(name).so.$(version) - ln -s $(name).so.$(version) $(name).so.$(major) - ln -s $(name).so.$(version) $(name).so - -clean: - -rm -f *.o *.lo *.so* *.a |