summaryrefslogtreecommitdiff
path: root/src/lib/openjp3d
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2012-10-01 07:33:59 +0000
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2012-10-01 07:33:59 +0000
commitbb16d8816c82f490df355d667795687b034dc976 (patch)
treec620b3848c3e72d27be25a147e0b6e8f99777db0 /src/lib/openjp3d
parente1cd500ac50f664bb7c4de479a3864367a46053c (diff)
[trunk] FolderReorgProposal task: only keep a single build system
Diffstat (limited to 'src/lib/openjp3d')
-rw-r--r--src/lib/openjp3d/Makefile.am88
1 files changed, 0 insertions, 88 deletions
diff --git a/src/lib/openjp3d/Makefile.am b/src/lib/openjp3d/Makefile.am
deleted file mode 100644
index 578bcac2..00000000
--- a/src/lib/openjp3d/Makefile.am
+++ /dev/null
@@ -1,88 +0,0 @@
-MAINTAINERCLEANFILES = Makefile.in
-
-lib_LTLIBRARIES = libopenjp3dvm.la
-
-includesdir = ${includedir}/openjp3d-@JP3D_MAJOR_NR@.@JP3D_MINOR_NR@
-includes_HEADERS = openjp3d.h
-
-libopenjp3dvm_la_LDFLAGS = -no-undefined -version-info @lt_version_jp3d@
-
-libopenjp3dvm_la_CPPFLAGS = \
--I. \
--I$(top_srcdir)/jp3d/libjp3dvm \
--I$(top_builddir)/jp3d/libjp3dvm
-libopenjp3dvm_la_CFLAGS =
-libopenjp3dvm_la_LIBADD = -lm
-libopenjp3dvm_la_SOURCES = \
-bio.c \
-cio.c \
-dwt.c \
-event.c \
-jp3d.c \
-jp3d_lib.c \
-volume.c \
-mct.c \
-mqc.c \
-openjp3d.c \
-pi.c \
-raw.c \
-t1.c \
-t1_3d.c \
-t2.c \
-tcd.c \
-tgt.c \
-bio.h \
-cio.h \
-dwt.h \
-event.h \
-fix.h \
-int.h \
-jp3d.h \
-jp3d_lib.h \
-mct.h \
-mqc.h \
-opj_includes.h \
-pi.h \
-raw.h \
-t1.h \
-t1_3d.h \
-t2.h \
-tcd.h \
-tgt.h \
-volume.h
-
-EXTRA_DIST = \
-CMakeLists.txt
-
-install-data-hook:
- cd $(DESTDIR)$(includedir) && \
- rm -f openjp3d.h && \
- $(LN_S) openjp3d-@JP3D_MAJOR_NR@.@JP3D_MINOR_NR@/openjp3d.h \
- openjp3d.h
- @echo -e " (LA)\t$(libdir)/libopenjp3dvm.la" >> $(top_builddir)/report.txt
- @( $(call solist) ) >> $(top_builddir)/report.txt
- @echo -e " (A)\t$(base)/$(a)" >> $(top_builddir)/report.txt
- @echo -e " (H)\t$(includedir)/openjp3d-$(MAJOR_NR).$(MINOR_NR)/openjp3d.h" >> $(top_builddir)/report.txt
- @echo -e " (LN)\t$(includedir)/openjp3d.h" >> $(top_builddir)/report.txt
-
-uninstall-hook:
- rm -f $(DESTDIR)$(includedir)/openjp3d.h
-
-solist = $(foreach f, $(dll) $(so), echo -e ' $(SO_PREFIX)\t$(base)/$(f)' ;)
-get_tok = $(shell grep -E "^$(1)=" $(lib_LTLIBRARIES) | cut -d "'" -f 2)
-base = $(call get_tok,libdir)
-so = $(call get_tok,library_names)
-a = $(call get_tok,old_library)
-
-if HAVE_WIN32
-SO_PREFIX = (DLL)
-dll = $(call get_tok,dlname)
-else
-if HAVE_DARWIN
-SO_PREFIX = (DY)
-dll =
-else
-SO_PREFIX = (SO)
-dll =
-endif
-endif