diff options
Diffstat (limited to 'jp3d/codec/Makefile.am')
| -rw-r--r-- | jp3d/codec/Makefile.am | 21 |
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) |
