2010-10-18 00:42:46 +02:00
|
|
|
#doc Makefile.nix
|
2010-10-05 12:33:15 +02:00
|
|
|
include ../config.nix
|
|
|
|
|
2010-10-18 00:42:46 +02:00
|
|
|
doc_dir = $(prefix)/share/doc/openjpeg-$(MAJOR).$(MINOR)
|
|
|
|
man_dir = $(prefix)/share/man
|
2010-10-05 12:33:15 +02:00
|
|
|
|
2010-10-18 00:42:46 +02:00
|
|
|
ifeq ($(HAS_DOXYGEN),yes)
|
|
|
|
docs:
|
2010-10-05 12:33:15 +02:00
|
|
|
doxygen Doxyfile.dox
|
|
|
|
|
2010-10-18 00:42:46 +02:00
|
|
|
endif
|
2010-10-05 12:33:15 +02:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf html
|
|
|
|
|
2010-10-18 00:42:46 +02:00
|
|
|
install:
|
2010-10-18 02:17:19 +02:00
|
|
|
cp man/man1/* .
|
|
|
|
cp man/man3/* .
|
2010-10-18 00:42:46 +02:00
|
|
|
install -d $(doc_dir)
|
|
|
|
install -d $(man_dir)/man1 $(man_dir)/man3
|
|
|
|
ifeq ($(WITH_JPWL),yes)
|
|
|
|
(cd $(man_dir)/man1 && rm -f JPWL_image_to_j2k* JPWL_j2k_to_image* )
|
|
|
|
(cd $(man_dir)/man3 && rm -f JPWL_libopenjpeg* )
|
|
|
|
endif
|
|
|
|
(cd $(man_dir)/man1 && rm -f image_to_j2k* j2k_to_image* j2k_dump* )
|
|
|
|
(cd $(man_dir)/man3 && rm -f libopenjpeg* )
|
|
|
|
gzip -f image_to_j2k.1 j2k_to_image.1 j2k_dump.1 libopenjpeg.3
|
2010-10-18 02:17:19 +02:00
|
|
|
cp -f image_to_j2k.1.gz j2k_to_image.1.gz j2k_dump.1.gz $(man_dir)/man1
|
|
|
|
cp -f libopenjpeg.3.gz $(man_dir)/man3
|
|
|
|
rm -f *\.gz
|
2010-10-18 00:42:46 +02:00
|
|
|
ifeq ($(WITH_JPWL),yes)
|
|
|
|
(cd $(man_dir)/man1 && \
|
|
|
|
ln -sf image_to_j2k.1.gz JPWL_image_to_j2k.1.gz && \
|
|
|
|
ln -sf j2k_to_image.1.gz JPWL_j2k_to_image.1.gz)
|
|
|
|
(cd $(man_dir)/man3 && ln -sf libopenjpeg.3.gz JPWL_libopenjpeg.3.gz)
|
2010-10-05 12:33:15 +02:00
|
|
|
endif
|
2010-10-18 00:42:46 +02:00
|
|
|
cp ../LICENSE ../CHANGES $(doc_dir)
|
|
|
|
|
|
|
|
uninstall:
|
|
|
|
rm -rf $(doc_dir)
|
|
|
|
ifeq ($(WITH_JPWL),yes)
|
|
|
|
(cd $(man_dir)/man1 && rm -f JPWL_image_to_j2k* JPWL_j2k_to_image* )
|
|
|
|
(cd $(man_dir)/man3 && rm -f JPWL_libopenjpeg* )
|
|
|
|
endif
|
|
|
|
(cd $(man_dir)/man1 && rm -f image_to_j2k* j2k_to_image* j2k_dump* )
|
|
|
|
(cd $(man_dir)/man3 && rm -f libopenjpeg* )
|
|
|
|
|