summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Lugan <slugan@users.noreply.github.com>2004-07-15 15:52:44 +0000
committerSebastien Lugan <slugan@users.noreply.github.com>2004-07-15 15:52:44 +0000
commitc81b74d91bbacdb549a9f7d310b150c6841d6865 (patch)
tree6668d7e47b5a7b9a6819b04aef40226c6feb256c
parent17a559b49ef0244c90d95755fdf9159d097880ce (diff)
Bugfix Makefile / jp2.c & jp2.h
-rw-r--r--libopenjpeg/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/libopenjpeg/Makefile b/libopenjpeg/Makefile
index 07990e63..d5f2727b 100644
--- a/libopenjpeg/Makefile
+++ b/libopenjpeg/Makefile
@@ -54,9 +54,10 @@ $(OBJ_DIR)/t2.o: t2.c t2.h tcd.h bio.h j2k.h pi.h tgt.h int.h cio.h
$(OBJ_DIR)/tcd.o: tcd.c tcd.h int.h t1.h t2.h dwt.h mct.h
$(OBJ_DIR)/tgt.o: tgt.c tgt.h bio.h
$(OBJ_DIR)/jpt.o: jpt.c jpt.h cio.h
+$(OBJ_DIR)/jp2.o: jp2.c jp2.h
COM_OBJS = $(addprefix $(OBJ_DIR)/, j2k.o bio.o cio.o dwt.o fix.o int.o mct.o \
- mqc.o pi.o t1.o t2.o tgt.o tcd.o raw.o jpt.o)
+ mqc.o pi.o t1.o t2.o tgt.o tcd.o raw.o jpt.o jp2.o)
$(LIB_DIR)/libopenjpeg.a: ${COM_OBJS}
$(AR) -sr $@ $^