diff options
author | Mattias Andrée <m@maandree.se> | 2024-10-13 23:30:45 +0200 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2024-10-13 23:31:04 +0200 |
commit | 1529bac1c8e013e64aea6152ee2375f4de419827 (patch) | |
tree | 120f91c7a6448f15fe091958fc6486c290091bf7 | |
parent | Add overview man pages for the library and for the header (diff) | |
download | libparsepcf-master.tar.gz libparsepcf-master.tar.bz2 libparsepcf-master.tar.xz |
Signed-off-by: Mattias Andrée <m@maandree.se>
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -72,8 +72,8 @@ MAN3 =\ libparsepcf_get_glyph_names.3\ libparsepcf_get_glyph_name_subtable.3\ struct_libparsepcf_bitmaps.3\ - int libparsepcf_get_bitmaps.3\ - int libparsepcf_get_bitmap_offsets.3\ + libparsepcf_get_bitmaps.3\ + libparsepcf_get_bitmap_offsets.3\ struct_libparsepcf_encoding.3\ LIBPARSEPCF_NOT_ENCODED.3\ libparsepcf_get_encoding.3\ @@ -126,7 +126,9 @@ install: libparsepcf.a libparsepcf.$(LIBEXT) ln -sf -- libparsepcf.$(LIBMINOREXT) "$(DESTDIR)$(PREFIX)/lib/libparsepcf.$(LIBMAJOREXT)" ln -sf -- libparsepcf.$(LIBMAJOREXT) "$(DESTDIR)$(PREFIX)/lib/libparsepcf.$(LIBEXT)" cp -- libparsepcf.h "$(DESTDIR)$(PREFIX)/include/" + cp -P -- $(MAN0) "$(DESTDIR)$(MANPREFIX)/man0/" cp -P -- $(MAN3) "$(DESTDIR)$(MANPREFIX)/man3/" + cp -P -- $(MAN7) "$(DESTDIR)$(MANPREFIX)/man7/" uninstall: -rm -f -- "$(DESTDIR)$(PREFIX)/lib/libparsepcf.a" |