summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonin Descampe <antonin@gmail.com>2008-01-16 17:17:05 +0000
committerAntonin Descampe <antonin@gmail.com>2008-01-16 17:17:05 +0000
commit901308cbc8d97f896244ebaa085faaf58fece173 (patch)
tree1404c8c1816229310525e03be090fcaa90c19e57
parentea6d8f5aaf9f48bcf2cf8c37a7b72f804c68889f (diff)
update makefile.osx and readme.osx to comply with version 1.3
-rw-r--r--Makefile.osx2
-rw-r--r--README.osx8
2 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.osx b/Makefile.osx
index b00af493..774a3e44 100644
--- a/Makefile.osx
+++ b/Makefile.osx
@@ -1,7 +1,7 @@
# MacOSX makefile for OpenJPEG
VER_MAJOR = 2
-VER_MINOR = 1.2.0
+VER_MINOR = 1.3.0
SRCS = ./libopenjpeg/bio.c ./libopenjpeg/cio.c ./libopenjpeg/dwt.c ./libopenjpeg/event.c ./libopenjpeg/image.c ./libopenjpeg/j2k.c ./libopenjpeg/j2k_lib.c ./libopenjpeg/jp2.c ./libopenjpeg/jpt.c ./libopenjpeg/mct.c ./libopenjpeg/mqc.c ./libopenjpeg/openjpeg.c ./libopenjpeg/pi.c ./libopenjpeg/raw.c ./libopenjpeg/t1.c ./libopenjpeg/t2.c ./libopenjpeg/tcd.c ./libopenjpeg/tgt.c
INCLS = ./libopenjpeg/bio.h ./libopenjpeg/cio.h ./libopenjpeg/dwt.h ./libopenjpeg/event.h ./libopenjpeg/fix.h ./libopenjpeg/image.h ./libopenjpeg/int.h ./libopenjpeg/j2k.h ./libopenjpeg/j2k_lib.h ./libopenjpeg/jp2.h ./libopenjpeg/jpt.h ./libopenjpeg/mct.h ./libopenjpeg/mqc.h ./libopenjpeg/openjpeg.h ./libopenjpeg/pi.h ./libopenjpeg/raw.h ./libopenjpeg/t1.h ./libopenjpeg/t2.h ./libopenjpeg/tcd.h ./libopenjpeg/tgt.h ./libopenjpeg/opj_includes.h
diff --git a/README.osx b/README.osx
index 9338cf7f..e99eccbc 100644
--- a/README.osx
+++ b/README.osx
@@ -18,9 +18,9 @@ make osxclean
Simple codec compilation
------------------------
-Once you've built the library, you might want to test it with a basic codec. To do this, go to the codec directory and use one of the following commands to build an encoder and decoder respectively:
+Once you've built the library, you might want to test it with a basic codec. To do this, go to the codec directory and either use the provided Makefile or use one of the following commands to build an encoder and decoder respectively:
-gcc convert.c image_to_j2k.c -o image_to_j2k -lopenjpeg -I ../libopenjpeg/ -lm -ltiff
-gcc convert.c j2k_to_image.c -o j2k_to_image -lopenjpeg -I ../libopenjpeg/ -lm -ltiff
+gcc index.c convert.c image_to_j2k.c -o image_to_j2k -lopenjpeg -I ../libopenjpeg/ -lm -ltiff
+gcc index.c convert.c j2k_to_image.c -o j2k_to_image -lopenjpeg -I ../libopenjpeg/ -lm -ltiff
-You should add '-L..' and to those lines if you did not use the 'install' target (and the 'clean' target neither...).
+You should add '-L..' to those lines if you did not use the 'install' target (and the 'clean' target neither...).