update makefile.osx and readme.osx to comply with version 1.3
authorAntonin Descampe <antonin@gmail.com>
Wed, 16 Jan 2008 17:17:05 +0000 (17:17 +0000)
committerAntonin Descampe <antonin@gmail.com>
Wed, 16 Jan 2008 17:17:05 +0000 (17:17 +0000)
Makefile.osx
README.osx

index b00af4936342e21f62efec14a2ba81189b0b794b..774a3e44379818d86a8ee233eef17dfde243f5f4 100644 (file)
@@ -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
index 9338cf7f086d69243fd022571994c1169a66e804..e99eccbce4aaf3a913f7e74f4e71e829db540370 100644 (file)
@@ -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...).