commit:     d092d2163bb287872d88c379841f87141448c3a8
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon May 30 16:59:33 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Mon May 30 17:02:51 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d092d216

media-libs/lodepng: remove stray file

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 media-libs/lodepng/Makefile | 37 -------------------------------------
 1 file changed, 37 deletions(-)

diff --git a/media-libs/lodepng/Makefile b/media-libs/lodepng/Makefile
deleted file mode 100644
index 6731999d9..000000000
--- a/media-libs/lodepng/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-# This makefile only makes the unit test, benchmark and pngdetail and showpng
-# utilities. It does not make the PNG codec itself as shared or static library.
-# That is because:
-# LodePNG itself has only 1 source file (lodepng.cpp, can be renamed to
-# lodepng.c) and is intended to be included as source file in other projects 
and
-# their build system directly.
-
-
-CC ?= gcc
-CXX ?= g++
-
-CFLAGS += -W -Wall -Wextra -ansi -pedantic -Wno-unused-function
-CXXFLAGS += -W -Wall -Wextra -ansi -pedantic
-
-all: unittest benchmark pngdetail showpng lodepng.so
-
-%.o: %.cpp
-       @mkdir -p `dirname $@`
-       $(CXX) -I ./ $(CXXFLAGS) -fPIC -c $< -o $@
-
-lodepng.so: lodepng.o
-       $(CXX) $(CXXFLAGS) $(LDFLAGS) -fPIC -shared -Wl,-soname,lodepngn.so $^ 
-o $@
-
-unittest: lodepng.so lodepng_util.o lodepng_unittest.o
-       $(CXX) $^ $(CXXFLAGS) $(LDFLAGA) -fPIE -o $@ -L. -llodepng
-
-benchmark: lodepng.so lodepng_benchmark.o
-       $(CXX) $^ $(CXXFLAGS) $(LDFLAGS) -fPIE -lSDL -o $@ -L. -llodepng
-
-pngdetail: lodepng.so lodepng_util.o pngdetail.o
-       $(CXX) $^ $(CXXFLAGS) $(LDFLAGS) -fPIE -o $@ -L. -llodepng
-
-showpng: lodepng.so examples/example_sdl.o
-       $(CXX) -I ./ $^ $(CXXFLAGS) $(LDFLAGS) -fPIE -lSDL -o $@ -L. -llodepng
-
-clean:
-       rm -f unittest benchmark pngdetail showpng lodepng_unittest.o 
lodepng_benchmark.o lodepng.o lodepng_util.o pngdetail.o examples/example_sdl.o

Reply via email to