diff options
| author | Francois-Olivier Devaux <fodevaux@users.noreply.github.com> | 2007-11-27 12:38:52 +0000 |
|---|---|---|
| committer | Francois-Olivier Devaux <fodevaux@users.noreply.github.com> | 2007-11-27 12:38:52 +0000 |
| commit | efa5f7977cbaf85cc3034fc34d1094911bc99fbd (patch) | |
| tree | 01b014fdf9f771f476220e86f11d1e4a6c553b59 /codec/Makefile | |
| parent | c458af9cd697c0a5949ef2f5bd4ab5c45530457b (diff) | |
Created the file index.c in the codec directory. This file handles the creation of index files, at encoding and decoding.
Fixed bugs during the creation of the index (PCRL progression order)
Diffstat (limited to 'codec/Makefile')
| -rw-r--r-- | codec/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/codec/Makefile b/codec/Makefile index f38ff762..14487a5f 100644 --- a/codec/Makefile +++ b/codec/Makefile @@ -5,10 +5,10 @@ CFLAGS = -O3 -lstdc++ # -g -p -pg all: j2k_to_image image_to_j2k j2k_to_image: j2k_to_image.c ../libopenjpeg.a - gcc $(CFLAGS) compat/getopt.c convert.c j2k_to_image.c -o j2k_to_image -L.. -lopenjpeg -I ../libopenjpeg/ -lm -ltiff + gcc $(CFLAGS) compat/getopt.c index.c convert.c j2k_to_image.c -o j2k_to_image -L.. -lopenjpeg -I ../libopenjpeg/ -lm -ltiff image_to_j2k: image_to_j2k.c ../libopenjpeg.a - gcc $(CFLAGS) compat/getopt.c convert.c image_to_j2k.c -o image_to_j2k -L.. -lopenjpeg -I ../libopenjpeg/ -lm -ltiff + gcc $(CFLAGS) compat/getopt.c index.c convert.c image_to_j2k.c -o image_to_j2k -L.. -lopenjpeg -I ../libopenjpeg/ -lm -ltiff clean: rm -f j2k_to_image image_to_j2k |
