mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
b8ee4bda81
This patch adds the 'MPC' library to the 'libports' repository. Fixes #263.
16 lines
264 B
Makefile
16 lines
264 B
Makefile
include $(REP_DIR)/lib/import/import-mpc.mk
|
|
|
|
MPC_DIR = $(REP_DIR)/contrib/$(MPC)
|
|
|
|
ifeq ($(wildcard $(MPC_DIR)),)
|
|
REQUIRES += prepare_mpc
|
|
endif
|
|
|
|
LIBS = libc gmp mpfr
|
|
|
|
SRC_C := $(notdir $(wildcard $(MPC_DIR)/src/*.c))
|
|
|
|
vpath %.c $(MPC_DIR)/src
|
|
|
|
SHARED_LIB = 1
|