summaryrefslogtreecommitdiff
path: root/jp3d/codec/Makefile.am
diff options
context:
space:
mode:
authorAntonin Descampe <antonin@gmail.com>2010-10-05 10:33:15 +0000
committerAntonin Descampe <antonin@gmail.com>2010-10-05 10:33:15 +0000
commiteeefefd56cb3edddefb73141733fd1e757c4b798 (patch)
tree4727958764c4c348762c043c2efbb7470a9ffcca /jp3d/codec/Makefile.am
parent531c0cf26f0c327b42a5caa79725e4afeb98768d (diff)
Added files to let people build openjpeg with configure tools ; Added makefiles to let people manually build openjpeg on *nix platforms ; Removed obsolete Makefiles ; Renamed dirent.h to windirent.h ; Made optional the PNG, TIFF, and LCMS support in CMake files ; Added opj_config* files to configure openjpeg before building it (opj_config.h generated by configure, cmake, or manually by the user) ; Renamed this file from ChangeLog to CHANGES ; Renamed License.txt to LICENSE ; Updated README files ; Added INSTALL and LICENSE files ; Added man pages
Diffstat (limited to 'jp3d/codec/Makefile.am')
-rw-r--r--jp3d/codec/Makefile.am21
1 files changed, 21 insertions, 0 deletions
diff --git a/jp3d/codec/Makefile.am b/jp3d/codec/Makefile.am
new file mode 100644
index 00000000..9e36582a
--- /dev/null
+++ b/jp3d/codec/Makefile.am
@@ -0,0 +1,21 @@
+#jp3d/codec/
+
+USERLIBS =
+INCLUDES = -I. -I../libjp3dvm
+CFLAGS = -Wall $(INCLUDES)
+
+bin_PROGRAMS = jp3d_to_volume volume_to_jp3d
+LDADD = $(USERLIBS) ../libjp3dvm/libopenjp3dvm.la
+
+jp3d_to_volume_SOURCES = getopt.c convert.c jp3d_to_volume.c
+
+volume_to_jp3d_SOURCES = getopt.c convert.c volume_to_jp3d.c
+
+REPBIN=$(bin_PROGRAMS)
+
+all-local:
+ $(INSTALL) -d ../../bin
+ $(INSTALL) $(bin_PROGRAMS) ../../bin
+ @(for f in ${REPBIN} ; do \
+ echo "Installing: ${prefix}/bin/$$f" >> ../.report.txt ; \
+ done)