16 lines
453 B
Makefile
16 lines
453 B
Makefile
# Makefile - hhl - /usr/src/world/mpfr
|
|
# Copyright 2020 Nathan Fisher <nfisher.sr@gmail.com>
|
|
#
|
|
distname = mpfr
|
|
include world.mk
|
|
|
|
config_opts += --host=$(tgt)
|
|
config_opts += --build=$(bld)
|
|
config_opts += --with-sysroot=$(DESTDIR)
|
|
config_opts += --disable-static
|
|
config_opts += --enable-thread-safe
|
|
config_opts += --docdir=$(install_prefix)/share/doc/mpfr/$(mpfr_version)
|
|
|
|
post_install = $(MAKE) -C $(objdir) html install-html
|
|
|
|
include targets.mk
|