diff options
author | Mattias Andrée <maandree@kth.se> | 2017-06-10 13:50:13 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2017-06-10 13:59:53 +0200 |
commit | 769d12c6be9e4be2ec776a7f6e69dedefebd9cb2 (patch) | |
tree | 21186cd204fb87f353877e495dca56645235275e /Makefile | |
parent | Add libcolour_get_rgb_colour_space.3 (diff) | |
download | libcolour-769d12c6be9e4be2ec776a7f6e69dedefebd9cb2.tar.gz libcolour-769d12c6be9e4be2ec776a7f6e69dedefebd9cb2.tar.bz2 libcolour-769d12c6be9e4be2ec776a7f6e69dedefebd9cb2.tar.xz |
Add libcolour_convert_en_masse
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -15,6 +15,7 @@ HDR =\ TEMPLATES =\ convert-template.c\ + en_masse-template.c\ libcolour-template.c MAN7 =\ @@ -42,7 +43,8 @@ MAN3 =\ libcolour_proper.3\ libcolour_get_rgb_colour_space.3\ libcolour_marshal.3\ - libcolour_unmarshal.3 + libcolour_unmarshal.3\ + libcolour_convert_en_masse.3 MAN3_SYMLINKS =\ libcolour_convert_f.3\ @@ -68,7 +70,10 @@ MAN3_SYMLINKS =\ libcolour_marshal_llf.3\ libcolour_unmarshal_f.3\ libcolour_unmarshal_lf.3\ - libcolour_unmarshal_llf.3 + libcolour_unmarshal_llf.3\ + libcolour_convert_en_masse_f.3\ + libcolour_convert_en_masse_lf.3\ + libcolour_convert_en_masse_llf.3 all: libcolour.a libcolour.so.$(SO_VERSION) libcolour.7 test @@ -154,6 +159,9 @@ install: libcolour.a libcolour.so.$(SO_VERSION) libcolour.7 ln -sf -- libcolour_unmarshal.3 "$(DESTDIR)$(MANPREFIX)/man3/libcolour_unmarshal_f.3" ln -sf -- libcolour_unmarshal.3 "$(DESTDIR)$(MANPREFIX)/man3/libcolour_unmarshal_lf.3" ln -sf -- libcolour_unmarshal.3 "$(DESTDIR)$(MANPREFIX)/man3/libcolour_unmarshal_llf.3" + ln -sf -- libcolour_convert_en_masse.3 "$(DESTDIR)$(MANPREFIX)/man3/libcolour_convert_en_masse_f.3" + ln -sf -- libcolour_convert_en_masse.3 "$(DESTDIR)$(MANPREFIX)/man3/libcolour_convert_en_masse_lf.3" + ln -sf -- libcolour_convert_en_masse.3 "$(DESTDIR)$(MANPREFIX)/man3/libcolour_convert_en_masse_llf.3" uninstall: |